2017-02-20 19:24:18 +00:00
|
|
|
{ lib, fetchurl, buildPythonPackage, isPy3k }:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
version = "1.5";
|
2017-05-27 09:25:35 +00:00
|
|
|
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";
|
|
|
|
sha256 = "0zkkpjy4gc161dkyxjmingjw48glljlqqrl4fh2k5idf0frkvzhh";
|
|
|
|
};
|
|
|
|
meta = {
|
|
|
|
homepage = "http://arthurdejong.org/python-stdnum/";
|
|
|
|
description = "Python module to handle standardized numbers and codes";
|
|
|
|
maintainers = with lib.maintainers; [ johbo ];
|
|
|
|
license = lib.licenses.lgpl2Plus;
|
|
|
|
};
|
|
|
|
}
|