1{ lib, fetchPypi, buildPythonPackage, isPy3k }:
2
3buildPythonPackage rec {
4 version = "1.10";
5 pname = "python-stdnum";
6 # Failing tests and dependency issue on Py3k
7 disabled = isPy3k;
8 src = fetchPypi {
9 inherit pname version;
10 sha256 = "0prs63q8zdgwr5cxc5a43zvsm66l0gf9jk19qdf85m6isnp5186a";
11 };
12 meta = {
13 homepage = https://arthurdejong.org/python-stdnum/;
14 description = "Python module to handle standardized numbers and codes";
15 maintainers = with lib.maintainers; [ johbo ];
16 license = lib.licenses.lgpl2Plus;
17 };
18}