about summary refs log tree commit diff
path: root/pkgs/development/python-modules/aenum/default.nix
blob: 3aa03aaa599361e686385610df812de8191c1d86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchPypi, buildPythonPackage, isPy3k }:

buildPythonPackage rec {
  pname = "aenum";
  version = "2.0.8";
  name = "${pname}-${version}";

  src = fetchPypi {
    inherit pname version;
    sha256 = "3209fa41b8c41345442e8d9b5158a57d3e96d84c3d5ebbe8e521e1e2eff1598d";
  };

  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)

  meta = {
    description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
    maintainers = with stdenv.lib.maintainers; [ vrthra ];
    license = with stdenv.lib.licenses; [ bsd3 ];
    homepage = https://bitbucket.org/stoneleaf/aenum;
  };
}