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.sure: 2.0.0 -> 2.0.1

Changelog: https://github.com/gabrielfalcao/sure/blob/2.0.1/CHANGELOG.md

+10 -4
+10 -4
pkgs/development/python-modules/sure/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , rednose 5 - , six 4 + , nose 6 5 , mock 6 + , six 7 7 , isPyPy 8 + , pythonOlder 8 9 }: 9 10 10 11 buildPythonPackage rec { ··· 20 19 sha256 = "sha256-yPxvq8Dn9phO6ruUJUDkVkblvvC7mf5Z4C2mNOTUuco="; 21 20 }; 22 21 22 + postPatch = '' 23 + substituteInPlace setup.cfg \ 24 + --replace "rednose = 1" "" 25 + ''; 26 + 23 27 propagatedBuildInputs = [ 24 - six 25 28 mock 29 + six 26 30 ]; 27 31 28 32 nativeCheckInputs = [ 29 - rednose 33 + nose 30 34 ]; 31 35 32 36 pythonImportsCheck = [