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

Configure Feed

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

python311Packages.pathvalidate: 2.5.2 -> 3.1.0

Changelog: https://github.com/thombashi/pathvalidate/releases/tag/v3.1.0

+9 -4
+9 -4
pkgs/development/python-modules/pathvalidate/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pythonOlder 5 + , setuptools 5 6 }: 6 7 7 8 buildPythonPackage rec { 8 9 pname = "pathvalidate"; 9 - version = "2.5.2"; 10 - format = "setuptools"; 10 + version = "3.1.0"; 11 + format = "pyproject"; 11 12 12 - disabled = pythonOlder "3.6"; 13 + disabled = pythonOlder "3.7"; 13 14 14 15 src = fetchPypi { 15 16 inherit pname version; 16 - hash = "sha256-X/V9D6vl7Lek8eSVe/61rYq1q0wPpx95xrvCS9m30U0="; 17 + hash = "sha256-QmlwIm4kGZ/ZDZOZXSI8Hii9qWfN9DcHVaFM33KiqO4="; 17 18 }; 19 + 20 + nativeBuildInputs = [ 21 + setuptools 22 + ]; 18 23 19 24 # Requires `pytest-md-report`, causing infinite recursion. 20 25 doCheck = false;