diff options
Diffstat (limited to 'pkgs/development/python-modules/calmjs/default.nix')
-rw-r--r-- | pkgs/development/python-modules/calmjs/default.nix | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/pkgs/development/python-modules/calmjs/default.nix b/pkgs/development/python-modules/calmjs/default.nix index 031ebfb493f8..ee3affa9c1bd 100644 --- a/pkgs/development/python-modules/calmjs/default.nix +++ b/pkgs/development/python-modules/calmjs/default.nix @@ -1,9 +1,10 @@ -{ lib -, fetchPypi -, buildPythonPackage -, calmjs-types -, calmjs-parse -, pytestCheckHook +{ + lib, + fetchPypi, + buildPythonPackage, + calmjs-types, + calmjs-parse, + pytestCheckHook, }: buildPythonPackage rec { @@ -13,7 +14,7 @@ buildPythonPackage rec { src = fetchPypi { inherit pname version; - sha256 = "sha256-73NQiY1RMdBrMIlm/VTvHY4dCHL1pQoj6a48CWRos3o="; + hash = "sha256-73NQiY1RMdBrMIlm/VTvHY4dCHL1pQoj6a48CWRos3o="; extension = "zip"; }; @@ -22,9 +23,7 @@ buildPythonPackage rec { calmjs-types ]; - checkInputs = [ - pytestCheckHook - ]; + checkInputs = [ pytestCheckHook ]; # ModuleNotFoundError: No module named 'calmjs.types' # Not yet clear how to run these tests correctly |