1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-19 20:36:27 +00:00
nixpkgs/pkgs/development/python-modules/aenum/default.nix

32 lines
912 B
Nix
Raw Normal View History

{ stdenv, fetchPypi, buildPythonPackage, python, isPy3k, glibcLocales }:
2017-02-12 00:12:10 +00:00
buildPythonPackage rec {
pname = "aenum";
2017-12-30 11:21:10 +00:00
version = "2.0.9";
2017-02-12 00:12:10 +00:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-12-30 11:21:10 +00:00
sha256 = "d98bc55136d696fcf323760c3db0de489da9e41fd51283fa6f90205deb85bf6a";
2017-02-12 00:12:10 +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 [];
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 04:54:44 +01:00
2017-02-12 00:12:10 +00:00
meta = {
description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
2017-05-03 04:54:44 +01:00
maintainers = with stdenv.lib.maintainers; [ vrthra ];
2017-02-12 00:12:10 +00:00
license = with stdenv.lib.licenses; [ bsd3 ];
homepage = https://bitbucket.org/stoneleaf/aenum;
};
}