My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/python-stdnum/default.nix

23 lines
560 B

{ lib, fetchPypi, buildPythonPackage, nose }:
buildPythonPackage rec {
version = "1.17";
pname = "python-stdnum";
src = fetchPypi {
inherit pname version;
sha256 = "374e2b5e13912ccdbf50b0b23fca2c3e0531174805c32d74e145f37756328340";
};
checkInputs = [ nose ];
checkPhase = ''
nosetests
'';
meta = {
homepage = "https://arthurdejong.org/python-stdnum/";
description = "Python module to handle standardized numbers and codes";
maintainers = with lib.maintainers; [ johbo ];
license = lib.licenses.lgpl2Plus;
};
}