pythonPackages.itypes: init at 1.1.0
This commit is contained in:
@@ -0,0 +1,31 @@
|
|||||||
|
{
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitHub,
|
||||||
|
buildPythonPackage,
|
||||||
|
pytest,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "itypes";
|
||||||
|
version = "1.1.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
repo = pname;
|
||||||
|
owner = "tomchristie";
|
||||||
|
rev = version;
|
||||||
|
sha256 = "0zkhn16wpslkxkq77dqw5rxa28nrchcb6nd3vgnxv91p4skyfm62";
|
||||||
|
};
|
||||||
|
|
||||||
|
checkInputs = [ pytest ];
|
||||||
|
checkPhase = ''
|
||||||
|
mv itypes.py itypes.py.hidden
|
||||||
|
pytest tests.py
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Simple immutable types for python";
|
||||||
|
homepage = https://github.com/tomchristie/itypes;
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ ivegotasthma ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -2404,6 +2404,8 @@ in {
|
|||||||
|
|
||||||
itsdangerous = callPackage ../development/python-modules/itsdangerous { };
|
itsdangerous = callPackage ../development/python-modules/itsdangerous { };
|
||||||
|
|
||||||
|
itypes = callPackage ../development/python-modules/itypes { };
|
||||||
|
|
||||||
iniparse = callPackage ../development/python-modules/iniparse { };
|
iniparse = callPackage ../development/python-modules/iniparse { };
|
||||||
|
|
||||||
i3-py = callPackage ../development/python-modules/i3-py { };
|
i3-py = callPackage ../development/python-modules/i3-py { };
|
||||||
|
|||||||
Reference in New Issue
Block a user