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

19 lines
560 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, isPy3k }:
2017-02-20 19:24:18 +00:00
buildPythonPackage rec {
2018-06-12 17:47:06 +01:00
version = "1.9";
pname = "python-stdnum";
2017-02-20 19:24:18 +00:00
# Failing tests and dependency issue on Py3k
disabled = isPy3k;
src = fetchPypi {
inherit pname version;
2018-06-12 17:47:06 +01:00
sha256 = "d587a520182f9d8aef7659cca429f4382881589c8883a0a55322b2f94970bdb3";
2017-02-20 19:24:18 +00:00
};
meta = {
2018-06-27 21:12:57 +01:00
homepage = https://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;
};
}