mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
ae18d68b6b
Another step in further separating python2 from python3.
27 lines
464 B
Nix
27 lines
464 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, isPy3k
|
|
, isPyPy
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "enum";
|
|
version = "0.4.7";
|
|
disabled = isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "001iq0yqs9f5bslvl793bhkcs71k5km9kv8yrj5h0lfsgrcg6z4c";
|
|
};
|
|
|
|
doCheck = !isPyPy;
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pypi.python.org/pypi/enum/";
|
|
description = "Robust enumerated type support in Python";
|
|
license = licenses.gpl2;
|
|
};
|
|
|
|
}
|