Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

Merge pull request #142307 from fabaff/bump-flux-led

python3Packages.flux-led: 0.24.9 -> 0.24.12

authored by

Fabian Affolter and committed by
GitHub
e341fb0a 3c03491a

+7 -2
+7 -2
pkgs/development/python-modules/flux-led/default.nix
··· 8 8 9 9 buildPythonPackage rec { 10 10 pname = "flux_led"; 11 - version = "0.24.9"; 11 + version = "0.24.12"; 12 12 13 13 disabled = pythonOlder "3.7"; 14 14 ··· 16 16 owner = "Danielhiversen"; 17 17 repo = "flux_led"; 18 18 rev = version; 19 - sha256 = "sha256-U2Z7fsXO5Wb4WmcOOXm+6zmk+7pLcUxz/a5/QtWwC2Y="; 19 + sha256 = "sha256-vhmqfHAqbgDUvbn+dR7TuA5SFjF72/nhCL1h+GPy+9c="; 20 20 }; 21 21 22 22 propagatedBuildInputs = [ ··· 26 26 checkInputs = [ 27 27 pytestCheckHook 28 28 ]; 29 + 30 + postPatch = '' 31 + substituteInPlace setup.py \ 32 + --replace '"pytest-runner>=5.2",' "" 33 + ''; 29 34 30 35 pytestFlagsArray = [ 31 36 "tests.py"