lol

python3Packages.pytest-param-files: 0.3.4 -> 0.6.0

+15 -7
+15 -7
pkgs/development/python-modules/pytest-param-files/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchFromGitHub 4 4 , flit-core 5 + , ruamel-yaml 5 6 , pytest 6 7 , pytestCheckHook 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "pytest-param-files"; 11 - version = "0.3.4"; 12 + version = "0.6.0"; 13 + format = "pyproject"; 12 14 13 15 src = fetchFromGitHub { 14 16 owner = "chrisjsewell"; 15 17 repo = pname; 16 - rev = "v${version}"; 17 - hash = "sha256-Q7wWoggJN2w2a2umQHx5TsVcugqpovBEtOKruNMZQ8A="; 18 + rev = "refs/tags/v${version}"; 19 + hash = "sha256-hgEEfKf9Kmah5WDNHoFWQJKLOs9Z5BDHiebXCdDc1zE="; 18 20 }; 19 21 20 - format = "pyproject"; 21 - 22 - nativeBuildInputs = [ flit-core ]; 22 + nativeBuildInputs = [ 23 + flit-core 24 + ]; 23 25 24 26 buildInputs = [ 25 27 pytest 26 28 ]; 27 29 28 - pythonImportsCheck = [ "pytest_param_files" ]; 30 + propagatedBuildInputs = [ 31 + ruamel-yaml 32 + ]; 33 + 34 + pythonImportsCheck = [ 35 + "pytest_param_files" 36 + ]; 29 37 30 38 nativeCheckInputs = [ 31 39 pytestCheckHook