python312Packages.bindep: 2.12.0 -> 2.13.0 (#395030)

authored by Sandro and committed by GitHub da25f94f 6a8f6223

+21 -6
+21 -6
pkgs/development/python-modules/bindep/default.nix
··· 3 buildPythonPackage, 4 distro, 5 fetchPypi, 6 packaging, 7 parsley, 8 pbr, 9 - setuptools, 10 }: 11 12 buildPythonPackage rec { 13 pname = "bindep"; 14 - version = "2.12.0"; 15 pyproject = true; 16 17 src = fetchPypi { 18 inherit pname version; 19 - hash = "sha256-wGtR5tC6OWWq2PPCXwpXS+D4AboHyxp4SV2olUZ952A="; 20 }; 21 22 env.PBR_VERSION = version; 23 24 build-system = [ 25 pbr 26 - setuptools 27 ]; 28 29 dependencies = [ ··· 33 distro 34 ]; 35 36 - # Checks moved to 'passthru.tests' to workaround infinite recursion 37 - doCheck = false; 38 39 pythonImportsCheck = [ "bindep" ]; 40
··· 3 buildPythonPackage, 4 distro, 5 fetchPypi, 6 + fixtures, 7 + libredirect, 8 packaging, 9 parsley, 10 pbr, 11 + pytestCheckHook, 12 + testtools, 13 }: 14 15 buildPythonPackage rec { 16 pname = "bindep"; 17 + version = "2.13.0"; 18 pyproject = true; 19 20 src = fetchPypi { 21 inherit pname version; 22 + hash = "sha256-33VkdT5YMDO7ETM4FQ13JUAUW00YmkgB7FaiW17eUFA="; 23 }; 24 25 env.PBR_VERSION = version; 26 27 build-system = [ 28 pbr 29 ]; 30 31 dependencies = [ ··· 35 distro 36 ]; 37 38 + nativeCheckInputs = [ 39 + fixtures 40 + libredirect.hook 41 + pytestCheckHook 42 + testtools 43 + ]; 44 + 45 + preCheck = '' 46 + echo "ID=nixos 47 + " > os-release 48 + export NIX_REDIRECTS=/etc/os-release=$(realpath os-release) 49 + export PATH=$PATH:$out/bin 50 + ''; 51 + 52 + pytestFlagsArray = [ "-s" ]; 53 54 pythonImportsCheck = [ "bindep" ]; 55