nixpkgs/pkgs/development/python-modules/entrypoints/default.nix
Timo Kaufmann 34b3a0897f pythonPackages.entrypoints: fix python2 build
The recent pytest upgrade in bea4b361a0e3a21b1e9a69d56f1ebd16fb38a296
broke the test suite.
2018-10-30 20:44:18 +01:00

40 lines
1,007 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, configparser
, pytest
, isPy3k
, isPy27
}:
buildPythonPackage rec {
pname = "entrypoints";
version = "0.2.3";
src = fetchPypi {
inherit pname version;
sha256 = "d2d587dde06f99545fb13a383d2cd336a8ff1f359c5839ce3a64c917d10c029f";
};
checkInputs = [ pytest ];
propagatedBuildInputs = lib.optional (!isPy3k) configparser;
checkPhase = let
# On python2 with pytest 3.9.2 (not with pytest 3.7.4) the test_bad
# test fails. It tests that a warning (exectly one) is thrown on a "bad"
# path. The pytest upgrade added some warning, resulting in two warnings
# being thrown.
# upstream: https://github.com/takluyver/entrypoints/issues/23
pyTestArgs = if isPy27 then "-k 'not test_bad'" else "";
in ''
py.test ${pyTestArgs} tests
'';
meta = {
description = "Discover and load entry points from installed packages";
homepage = https://github.com/takluyver/entrypoints;
license = lib.licenses.mit;
};
}