Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 22 additions & 24 deletions pkgs/development/python-modules/apipkg/default.nix
Original file line number Diff line number Diff line change
@@ -1,41 +1,39 @@
{ lib, buildPythonPackage, fetchPypi
, pytest, setuptools-scm, isPy3k }:
{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, setuptools-scm
, pythonOlder
}:

buildPythonPackage rec {
pname = "apipkg";
version = "2.1.0";
version = "2.1.1";
format = "setuptools";

disabled = pythonOlder "3.7";

src = fetchPypi {
inherit pname version;
sha256 = "a4be31cf8081e660d2cdea6edfb8a0f39f385866abdcfcfa45e5a0887345cb70";
hash = "sha256-zKNAIkFKE5duM6HjjWoJBWfve2jQNy+SPGmaj4wIivw=";
};

nativeBuildInputs = [ setuptools-scm ];
checkInputs = [ pytest ];
nativeBuildInputs = [
setuptools-scm
];

# 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')"
'';
checkInputs = [
pytestCheckHook
];

# 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}
'';
pythonImportsCheck = [
"apipkg"
];

meta = with lib; {
description = "Namespace control and lazy-import mechanism";
homepage = "https://github.com/pytest-dev/apipkg";
license = licenses.mit;
maintainers = with maintainers; [ ];
};
}