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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
814 B
Nix
Raw Normal View History

2021-06-01 11:24:42 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pyparsing
, python
}:
2017-02-12 00:12:10 +00:00
buildPythonPackage rec {
pname = "aenum";
version = "3.1.8";
2021-11-09 07:44:57 +00:00
format = "setuptools";
2017-02-12 00:12:10 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "8dbe15f446eb8264b788dfeca163fb0a043d408d212152397dc11377b851e4ae";
2017-02-12 00:12:10 +00:00
};
2021-06-01 11:24:42 +00:00
checkInputs = [
pyparsing
2021-11-09 07:44:57 +00:00
];
# py2 likes to reorder tests
doCheck = isPy3k;
2021-06-01 11:24:42 +00:00
checkPhase = ''
2021-06-01 11:24:42 +00:00
runHook preCheck
${python.interpreter} aenum/test.py
runHook postCheck
'';
2021-11-09 07:44:57 +00:00
pythonImportsCheck = [
"aenum"
];
2021-06-01 11:24:42 +00:00
meta = with lib; {
2017-02-12 00:12:10 +00:00
description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
homepage = "https://github.com/ethanfurman/aenum";
2021-11-09 07:44:57 +00:00
license = licenses.bsd3;
maintainers = with maintainers; [ vrthra ];
2017-02-12 00:12:10 +00:00
};
}