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

19 lines
549 B
Nix
Raw Normal View History

2018-06-23 15:27:58 +02:00
{ lib, fetchPypi, buildPythonPackage, isPy3k }:
2017-02-20 20:24:18 +01:00
buildPythonPackage rec {
2018-11-08 16:12:31 -08:00
version = "1.10";
2017-05-27 11:25:35 +02:00
pname = "python-stdnum";
2017-02-20 20:24:18 +01:00
# Failing tests and dependency issue on Py3k
disabled = isPy3k;
2018-06-23 15:27:58 +02:00
src = fetchPypi {
inherit pname version;
2018-11-08 16:12:31 -08:00
sha256 = "0prs63q8zdgwr5cxc5a43zvsm66l0gf9jk19qdf85m6isnp5186a";
2017-02-20 20:24:18 +01:00
};
meta = {
2018-06-27 13:12:57 -07:00
homepage = https://arthurdejong.org/python-stdnum/;
2017-02-20 20:24:18 +01:00
description = "Python module to handle standardized numbers and codes";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.lgpl2Plus;
};
}