46 lines
1,015 B
Nix
46 lines
1,015 B
Nix
|
{
|
||
|
lib,
|
||
|
buildPythonPackage,
|
||
|
fetchPypi,
|
||
|
pytestCheckHook,
|
||
|
pythonOlder,
|
||
|
setuptools,
|
||
|
zeep,
|
||
|
}:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "python-stdnum";
|
||
|
version = "1.20";
|
||
|
pyproject = true;
|
||
|
|
||
|
disabled = pythonOlder "3.7";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
hash = "sha256-rSos8usCXeQIIQI182tK4xJS3jGGJAzKqBJuEXy4JpA=";
|
||
|
};
|
||
|
|
||
|
postPatch = ''
|
||
|
substituteInPlace setup.cfg \
|
||
|
--replace-fail " --cov=stdnum --cov-report=term-missing:skip-covered --cov-report=html" ""
|
||
|
'';
|
||
|
|
||
|
nativeBuildInputs = [ setuptools ];
|
||
|
|
||
|
nativeCheckInputs = [ pytestCheckHook ];
|
||
|
|
||
|
optional-dependencies = {
|
||
|
SOAP = [ zeep ];
|
||
|
};
|
||
|
|
||
|
pythonImportsCheck = [ "stdnum" ];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Python module to handle standardized numbers and codes";
|
||
|
homepage = "https://arthurdejong.org/python-stdnum/";
|
||
|
changelog = "https://github.com/arthurdejong/python-stdnum/blob/${version}/ChangeLog";
|
||
|
license = licenses.lgpl21Plus;
|
||
|
maintainers = with maintainers; [ johbo ];
|
||
|
};
|
||
|
}
|