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

20 lines
622 B
Nix
Raw Normal View History

2017-02-20 19:24:18 +00:00
{ lib, fetchurl, buildPythonPackage, isPy3k }:
buildPythonPackage rec {
2018-01-07 08:01:11 +00:00
version = "1.8.1";
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";
2018-01-07 08:01:11 +00:00
sha256 = "d7162fdb29337aebed65700cc7297016f6cd32cae4ad7aed8f7e7531f0217943";
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;
};
}