nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
fork

Configure Feed

Select the types of activity you want to include in your feed.

python3Packages.python-stdnum: 1.20 -> 2.1

https://github.com/arthurdejong/python-stdnum/blob/2.1/ChangeLog

This commit was automatically generated using update-python-libraries.

+10 -9
+10 -9
pkgs/development/python-modules/python-stdnum/default.nix
··· 1 1 { 2 2 lib, 3 3 buildPythonPackage, 4 - fetchPypi, 4 + fetchFromGitHub, 5 5 pytestCheckHook, 6 6 pytest-cov-stub, 7 7 setuptools, ··· 13 13 version = "2.1"; 14 14 pyproject = true; 15 15 16 - src = fetchPypi { 17 - pname = "python_stdnum"; 18 - inherit version; 19 - hash = "sha256-awFkWWnrPf1VBhoBFNWTdTzZ5lPOqQgxmLfuoSZEOXo="; 16 + src = fetchFromGitHub { 17 + owner = "arthurdejong"; 18 + repo = "python-stdnum"; 19 + tag = version; 20 + hash = "sha256-9m4tO9TX9lV4V3wTkMFDj0Mc+jl4bKsHM/adeF3cBTE="; 20 21 }; 21 22 22 23 build-system = [ setuptools ]; 24 + 25 + optional-dependencies = { 26 + SOAP = [ zeep ]; 27 + }; 23 28 24 29 nativeCheckInputs = [ 25 30 pytestCheckHook 26 31 pytest-cov-stub 27 32 ]; 28 - 29 - optional-dependencies = { 30 - SOAP = [ zeep ]; 31 - }; 32 33 33 34 pythonImportsCheck = [ "stdnum" ]; 34 35