lol

python3Packages.pytest-cases: 3.8.5 -> 3.8.6

https://github.com/smarie/python-pytest-cases/releases/tag/3.8.6

+6 -5
+6 -5
pkgs/development/python-modules/pytest-cases/default.nix
··· 11 11 12 12 buildPythonPackage rec { 13 13 pname = "pytest-cases"; 14 - version = "3.8.5"; 14 + version = "3.8.6"; 15 15 pyproject = true; 16 16 17 17 disabled = pythonOlder "3.6"; 18 18 19 19 src = fetchPypi { 20 - inherit pname version; 21 - hash = "sha256-ySBUGHhHp9MNirZwn7FnCoMOThkjS+cAyFyWttcQLBY="; 20 + pname = "pytest_cases"; 21 + inherit version; 22 + hash = "sha256-XCTgqwy2+OgCpGm3llkGozPTuruHRYbrxW9+LL4afEQ="; 22 23 }; 23 24 24 - nativeBuildInputs = [ setuptools-scm ]; 25 + build-system = [ setuptools-scm ]; 25 26 26 27 buildInputs = [ pytest ]; 27 28 28 - propagatedBuildInputs = [ 29 + dependencies = [ 29 30 decopatch 30 31 makefun 31 32 ];