2017-07-28 07:35:30 +01:00
|
|
|
{ stdenv, buildPythonPackage, fetchPypi
|
2019-08-18 07:41:11 +01:00
|
|
|
, pytest, setuptools_scm, isPy3k }:
|
2017-07-28 07:35:30 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "apipkg";
|
2018-07-22 11:04:13 +01:00
|
|
|
version = "1.5";
|
2017-07-28 07:35:30 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-07-22 11:04:13 +01:00
|
|
|
sha256 = "37228cda29411948b422fae072f57e31d3396d2ee1c9783775980ee9c9990af6";
|
2017-07-28 07:35:30 +01:00
|
|
|
};
|
|
|
|
|
2019-02-14 10:07:19 +00:00
|
|
|
nativeBuildInputs = [ setuptools_scm ];
|
2019-05-25 02:04:00 +01:00
|
|
|
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')"
|
|
|
|
'';
|
2017-07-28 07:35:30 +01:00
|
|
|
|
2019-08-18 07:41:11 +01:00
|
|
|
# Failing tests on Python 3
|
|
|
|
# https://github.com/pytest-dev/apipkg/issues/17
|
|
|
|
checkPhase = let
|
|
|
|
disabledTests = stdenv.lib.optionals isPy3k [
|
|
|
|
"test_error_loading_one_element"
|
|
|
|
"test_aliasmodule_proxy_methods"
|
|
|
|
"test_eagerload_on_bython"
|
|
|
|
];
|
|
|
|
testExpression = stdenv.lib.optionalString (disabledTests != [])
|
|
|
|
"-k 'not ${stdenv.lib.concatStringsSep " and not " disabledTests}'";
|
|
|
|
in ''
|
|
|
|
py.test ${testExpression}
|
2017-07-28 07:35:30 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Namespace control and lazy-import mechanism";
|
2019-05-25 02:04:00 +01:00
|
|
|
homepage = "https://github.com/pytest-dev/apipkg";
|
2017-07-28 07:35:30 +01:00
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|