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

20 lines
620 B
Nix
Raw Normal View History

2017-02-20 19:24:18 +00:00
{ lib, fetchurl, buildPythonPackage, isPy3k }:
buildPythonPackage rec {
2017-10-25 19:04:35 +01:00
version = "1.7";
pname = "python-stdnum";
name = "${pname}-${version}";
2017-02-20 19:24:18 +00:00
# Failing tests and dependency issue on Py3k
disabled = isPy3k;
src = fetchurl {
url = "mirror://pypi/p/python-stdnum/${name}.tar.gz";
2017-10-25 19:04:35 +01:00
sha256 = "987c25e1047e8742131bcf29dac7a406987adb1463465749e2daaba8cb19d264";
2017-02-20 19:24:18 +00:00
};
meta = {
homepage = http://arthurdejong.org/python-stdnum/;
2017-02-20 19:24:18 +00:00
description = "Python module to handle standardized numbers and codes";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.lgpl2Plus;
};
}