2021-06-04 09:07:49 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchPypi
|
|
|
|
, isPy3k
|
|
|
|
, pyparsing
|
|
|
|
, python
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aenum";
|
2021-06-04 09:07:49 +00:00
|
|
|
version = "3.1.0";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-06-04 09:07:49 +00:00
|
|
|
sha256 = "sha256-h/Dp70+ChXirBq8w5NeUQEO/Ts0/S3vRy+N+IXPN6Uo=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2021-06-04 09:07:49 +00:00
|
|
|
checkInputs = [
|
|
|
|
pyparsing
|
|
|
|
] ;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
# py2 likes to reorder tests
|
|
|
|
doCheck = isPy3k;
|
2021-06-04 09:07:49 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
checkPhase = ''
|
2021-06-04 09:07:49 +00:00
|
|
|
runHook preCheck
|
|
|
|
${python.interpreter} aenum/test.py
|
|
|
|
runHook postCheck
|
2020-04-24 23:36:52 +00:00
|
|
|
'';
|
|
|
|
|
2021-06-04 09:07:49 +00:00
|
|
|
pythonImportsCheck = [ "aenum" ];
|
|
|
|
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
|
2021-02-05 17:12:51 +00:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
|
|
|
license = licenses.bsd3;
|
2021-01-05 17:05:55 +00:00
|
|
|
homepage = "https://github.com/ethanfurman/aenum";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|