about summary refs log tree commit diff
path: root/pkgs/development/python-modules/chai
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/chai')
-rw-r--r--pkgs/development/python-modules/chai/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/chai/default.nix b/pkgs/development/python-modules/chai/default.nix
new file mode 100644
index 0000000000000..f5440004ebdb0
--- /dev/null
+++ b/pkgs/development/python-modules/chai/default.nix
@@ -0,0 +1,16 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "chai";
+  version = "1.1.1";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "016kf3irrclpkpvcm7q0gmkfibq7jgy30a9v73pp42bq9h9a32bl";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Mocking, stubbing and spying framework for python";
+  };
+}