nixpkgs/pkgs/development/python-modules/itypes/default.nix
Robert Schütz 2aa6bce7d9 maintainers: remove ivegotasthma
He disappeared from GitHub and doesn't reply to emails.
2021-05-12 13:31:03 +02:00

32 lines
612 B
Nix

{
lib,
fetchFromGitHub,
buildPythonPackage,
pytest,
}:
buildPythonPackage rec {
pname = "itypes";
version = "1.2.0";
src = fetchFromGitHub {
repo = pname;
owner = "tomchristie";
rev = version;
sha256 = "1ljhjp9pacbrv2phs58vppz1dlxix01p98kfhyclvbml6dgjcr52";
};
checkInputs = [ pytest ];
checkPhase = ''
mv itypes.py itypes.py.hidden
pytest tests.py
'';
meta = with lib; {
description = "Simple immutable types for python";
homepage = "https://github.com/tomchristie/itypes";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}