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

33 lines
933 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, python, isPy3k, glibcLocales }:
2017-02-12 01:12:10 +01:00
buildPythonPackage rec {
pname = "aenum";
2019-11-19 15:35:31 +01:00
version = "2.2.3";
2017-02-12 01:12:10 +01:00
src = fetchPypi {
inherit pname version;
2019-11-19 15:35:31 +01:00
sha256 = "a4334cabf47c167d44ab5a6198837b80deec5d5bad1b5cf70c966c3a330260e8";
2017-02-12 01:12:10 +01:00
};
# For Python 3, locale has to be set to en_US.UTF-8 for
# tests to pass
checkInputs = if isPy3k then [ glibcLocales ] else [];
# py2 likes to reorder tests
doCheck = isPy3k;
checkPhase = ''
runHook preCheck
${if isPy3k then "export LC_ALL=en_US.UTF-8" else ""}
PYTHONPATH=`pwd` ${python.interpreter} aenum/test.py
runHook postCheck
'';
2017-05-03 05:54:44 +02:00
2017-02-12 01:12:10 +01:00
meta = {
description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
2017-05-03 05:54:44 +02:00
maintainers = with stdenv.lib.maintainers; [ vrthra ];
2017-02-12 01:12:10 +01:00
license = with stdenv.lib.licenses; [ bsd3 ];
homepage = "https://bitbucket.org/stoneleaf/aenum";
2017-02-12 01:12:10 +01:00
};
}