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

24 lines
560 B
Nix
Raw Normal View History

{ lib, fetchPypi, buildPythonPackage, nose }:
2017-02-20 19:24:18 +00:00
buildPythonPackage rec {
2020-08-16 18:31:14 +01:00
version = "1.14";
pname = "python-stdnum";
src = fetchPypi {
inherit pname version;
2020-08-16 18:31:14 +01:00
sha256 = "fd3a92b8ec82a159c41dbaa3c5397934d090090c92b04e346412e0fd7e6a1b1c";
2017-02-20 19:24:18 +00:00
};
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
2017-02-20 19:24:18 +00:00
meta = {
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;
};
}