nixpkgs/pkgs/development/python-modules/six/default.nix

30 lines
554 B
Nix
Raw Normal View History

2017-11-05 12:37:45 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pytest
}:
buildPythonPackage rec {
pname = "six";
2019-02-14 07:37:30 +00:00
version = "1.12.0";
2017-11-05 12:37:45 +00:00
src = fetchPypi {
inherit pname version;
2019-02-14 07:37:30 +00:00
sha256 = "d16a0141ec1a18405cd4ce8b4613101da75da0e9a7aec5bdd4fa804d0e0eba73";
2017-11-05 12:37:45 +00:00
};
checkInputs = [ pytest ];
checkPhase = ''
py.test test_six.py
'';
# To prevent infinite recursion with pytest
doCheck = false;
2017-11-05 12:37:45 +00:00
meta = {
description = "A Python 2 and 3 compatibility library";
homepage = https://pypi.python.org/pypi/six/;
2017-11-05 12:37:45 +00:00
license = lib.licenses.mit;
};
}