1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Update python package enum34 1.0 -> 1.0.4, also fixed missing build input for python26

This commit is contained in:
Kevin Marsh 2015-03-26 12:41:02 +00:00
parent b948978729
commit 1f34a1d4ad

View file

@ -4244,13 +4244,22 @@ let
};
enum34 = buildPythonPackage rec {
name = "enum34-1.0";
name = "enum34-${version}";
version = "1.0.4";
disabled = pythonAtLeast "3.4";
src = pkgs.fetchurl {
url = "http://pypi.python.org/packages/source/e/enum34/${name}.tar.gz";
md5 = "9d57f5454c70c11707998ea26c1b0a7c";
sha256 = "0iz4jjdvdgvfllnpmd92qxj5fnfxqpgmjpvpik0jjim3lqk9zhfk";
};
buildInputs = optional isPy26 self.ordereddict;
meta = {
homepage = https://pypi.python.org/pypi/enum34;
description = "Python 3.4 Enum backported to 3.3, 3.2, 3.1, 2.7, 2.6, 2.5, and 2.4";
license = "BSD";
};
};
epc = buildPythonPackage rec {