python.pkgs.pluggy: 0.3.1 -> 0.6.0

This commit is contained in:
Frederik Rietdijk 2017-12-29 20:22:43 +01:00
parent 9d9ae41281
commit 6801d20ac7
2 changed files with 30 additions and 16 deletions

View File

@ -0,0 +1,29 @@
{ buildPythonPackage
, lib
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "pluggy";
version = "0.6.0";
src = fetchPypi {
inherit pname version;
sha256 = "7f8ae7f5bdf75671a718d2daf0a64b7885f74510bcd98b1a0bb420eb9a9d0cff";
};
checkPhase = ''
py.test
'';
# To prevent infinite recursion with pytest
doCheck = false;
meta = {
description = "Plugin and hook calling mechanisms for Python";
homepage = "https://pypi.python.org/pypi/pluggy";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ jgeerds ];
};
}

View File

@ -21935,22 +21935,7 @@ EOF
};
};
pluggy = buildPythonPackage rec {
name = "pluggy-${version}";
version = "0.3.1";
src = pkgs.fetchurl {
url = "mirror://pypi/p/pluggy/${name}.tar.gz";
sha256 = "18qfzfm40bgx672lkg8q9x5hdh76n7vax99aank7vh2nw21wg70m";
};
meta = {
description = "Plugin and hook calling mechanisms for Python";
homepage = "https://pypi.python.org/pypi/pluggy";
license = licenses.mit;
maintainers = with maintainers; [ jgeerds ];
};
};
pluggy = callPackage ../development/python-modules/pluggy {};
xcffib = buildPythonPackage rec {
version = "0.3.2";