diff options
author | Robert Schütz | 2021-06-21 18:29:01 +0200 |
---|---|---|
committer | Martin Weinelt | 2021-06-22 13:42:55 +0200 |
commit | 9b4dbaa7bed404d423b04905ca4c75e1dc2ca194 (patch) | |
tree | 0aa5442a674e6a833905c11e36e2015636e591d5 /pkgs/development/python-modules/kajiki | |
parent | c7e1ded6c520d7e84c653315631fca5494b2e068 (diff) |
pythonPackages.Kajiki: fix build
Diffstat (limited to 'pkgs/development/python-modules/kajiki')
-rw-r--r-- | pkgs/development/python-modules/kajiki/default.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/kajiki/default.nix b/pkgs/development/python-modules/kajiki/default.nix index 0e00591b7710..3f202bd51f9f 100644 --- a/pkgs/development/python-modules/kajiki/default.nix +++ b/pkgs/development/python-modules/kajiki/default.nix @@ -4,11 +4,11 @@ , Babel , pytz , nine -, nose +, pytestCheckHook }: buildPythonPackage rec { - pname = "Kajiki"; + pname = "kajiki"; version = "0.8.3"; src = fetchPypi { @@ -17,7 +17,7 @@ buildPythonPackage rec { }; propagatedBuildInputs = [ Babel pytz nine ]; - checkInputs = [ nose ]; + checkInputs = [ pytestCheckHook ]; meta = with lib; { description = "Kajiki provides fast well-formed XML templates"; |