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

27 lines
888 B
Nix
Raw Normal View History

2017-05-03 05:54:44 +02:00
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:
2017-02-12 01:12:10 +01:00
buildPythonPackage rec {
pname = "aenum";
2017-12-30 12:21:10 +01:00
version = "2.0.9";
2017-02-12 01:12:10 +01:00
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
2017-12-30 12:21:10 +01:00
sha256 = "d98bc55136d696fcf323760c3db0de489da9e41fd51283fa6f90205deb85bf6a";
2017-02-12 01:12:10 +01:00
};
2017-05-03 05:54:44 +02:00
doCheck = !isPy3k;
# The following tests fail (only in python3
# test_convert (aenum.test.TestIntEnumConvert)
# test_convert_value_lookup_priority (aenum.test.TestIntEnumConvert)
# test_convert (aenum.test.TestIntEnumConvert)
# test_convert_value_lookup_priority (aenum.test.TestIntEnumConvert)
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;
};
}