2021-01-25 08:26:54 +00:00
|
|
|
{ lib, fetchPypi, buildPythonPackage, python, isPy3k, glibcLocales }:
|
2017-02-12 00:12:10 +00:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "aenum";
|
2021-01-28 01:04:09 +00:00
|
|
|
version = "3.0.0";
|
2017-02-12 00:12:10 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-01-28 01:04:09 +00:00
|
|
|
sha256 = "17cd8cfed1ee4b617198c9fabbabd70ebd8f01e54ac29cd6c3a92df14bd86656";
|
2017-02-12 00:12:10 +00:00
|
|
|
};
|
|
|
|
|
2018-01-16 09:40:40 +00:00
|
|
|
# For Python 3, locale has to be set to en_US.UTF-8 for
|
|
|
|
# tests to pass
|
|
|
|
checkInputs = if isPy3k then [ glibcLocales ] else [];
|
|
|
|
|
2019-10-26 22:46:04 +01:00
|
|
|
# py2 likes to reorder tests
|
|
|
|
doCheck = isPy3k;
|
2018-01-16 09:40:40 +00:00
|
|
|
checkPhase = ''
|
|
|
|
runHook preCheck
|
|
|
|
${if isPy3k then "export LC_ALL=en_US.UTF-8" else ""}
|
|
|
|
PYTHONPATH=`pwd` ${python.interpreter} aenum/test.py
|
|
|
|
runHook postCheck
|
|
|
|
'';
|
|
|
|
|
2021-01-24 00:29:22 +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";
|
2021-01-24 00:29:22 +00:00
|
|
|
maintainers = with maintainers; [ vrthra ];
|
|
|
|
license = licenses.bsd3;
|
2020-12-29 23:12:36 +00:00
|
|
|
homepage = "https://github.com/ethanfurman/aenum";
|
2017-02-12 00:12:10 +00:00
|
|
|
};
|
|
|
|
}
|