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