about summary refs log tree commit diff
path: root/pkgs/development/python-modules/credstash
diff options
context:
space:
mode:
authorThomas Depierre <depierre.thomas@gmail.com>2020-07-22 11:30:19 +0200
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-11-03 10:53:53 -0800
commit3fbb1f7e4c44ee09d4230653e7d8273697bab598 (patch)
tree209325eb59ddadb88b70fea6df6c3d3efc05072c /pkgs/development/python-modules/credstash
parentcaf48513521c4d1ac6a30bbaeb210572e59bdaf4 (diff)
python3Packages.credstash: fix nativeBuildInputs
Diffstat (limited to 'pkgs/development/python-modules/credstash')
-rw-r--r--pkgs/development/python-modules/credstash/default.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/credstash/default.nix b/pkgs/development/python-modules/credstash/default.nix
index 1abd3f4ed2037..1f9b4b28f2949 100644
--- a/pkgs/development/python-modules/credstash/default.nix
+++ b/pkgs/development/python-modules/credstash/default.nix
@@ -1,6 +1,4 @@
-{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils, nose
-, fetchpatch
-}:
+{ stdenv, buildPythonPackage, fetchPypi, cryptography, boto3, pyyaml, docutils, pytest, fetchpatch }:
 
 buildPythonPackage rec {
   pname = "credstash";
@@ -25,7 +23,7 @@ buildPythonPackage rec {
   # file ensures that Python imports the module from site-packages library.
   postInstall = "rm $out/bin/credstash.py";
 
-  nativeBuildInputs = [ nose ];
+  nativeBuildInputs = [ pytest ];
 
   propagatedBuildInputs = [ cryptography boto3 pyyaml docutils ];