lol
0
fork

Configure Feed

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

python310Packages.rebulk: adjust inputs and enable tests

+15 -6
+15 -6
pkgs/development/python-modules/rebulk/default.nix
··· 1 - { lib, buildPythonPackage, fetchPypi, pytest, pytest-runner, six, regex, pythonOlder }: 1 + { lib 2 + , buildPythonPackage 3 + , fetchPypi 4 + , pytestCheckHook 5 + , pythonOlder 6 + , regex 7 + }: 2 8 3 9 buildPythonPackage rec { 4 10 pname = "rebulk"; ··· 9 15 10 16 src = fetchPypi { 11 17 inherit pname version; 12 - sha256 = "sha256-DTC/gPygD6nGlxhaxHXarJveX2Rs4zOMn/XV3B69/rw="; 18 + hash = "sha256-DTC/gPygD6nGlxhaxHXarJveX2Rs4zOMn/XV3B69/rw="; 13 19 }; 14 20 15 - # Some kind of trickery with imports that doesn't work. 16 - doCheck = false; 17 - buildInputs = [ pytest pytest-runner ]; 18 - propagatedBuildInputs = [ six regex ]; 21 + propagatedBuildInputs = [ 22 + regex 23 + ]; 24 + 25 + buildInputs = [ 26 + pytestCheckHook 27 + ]; 19 28 20 29 pythonImportsCheck = [ 21 30 "rebulk"