uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
41
pkgs/development/python-modules/apipkg/default.nix
Normal file
41
pkgs/development/python-modules/apipkg/default.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ lib, buildPythonPackage, fetchPypi
|
||||
, pytest, setuptools-scm, isPy3k }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "apipkg";
|
||||
version = "2.1.0";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "a4be31cf8081e660d2cdea6edfb8a0f39f385866abdcfcfa45e5a0887345cb70";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ setuptools-scm ];
|
||||
checkInputs = [ pytest ];
|
||||
|
||||
# Fix pytest 4 support. See: https://github.com/pytest-dev/apipkg/issues/14
|
||||
postPatch = ''
|
||||
substituteInPlace "test_apipkg.py" \
|
||||
--replace "py.test.ensuretemp('test_apipkg')" "py.path.local('test_apipkg')"
|
||||
'';
|
||||
|
||||
# Failing tests on Python 3
|
||||
# https://github.com/pytest-dev/apipkg/issues/17
|
||||
checkPhase = let
|
||||
disabledTests = lib.optionals isPy3k [
|
||||
"test_error_loading_one_element"
|
||||
"test_aliasmodule_proxy_methods"
|
||||
"test_eagerload_on_bython"
|
||||
];
|
||||
testExpression = lib.optionalString (disabledTests != [])
|
||||
"-k 'not ${lib.concatStringsSep " and not " disabledTests}'";
|
||||
in ''
|
||||
py.test ${testExpression}
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Namespace control and lazy-import mechanism";
|
||||
homepage = "https://github.com/pytest-dev/apipkg";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue