about summary refs log tree commit diff
path: root/pkgs/development/python-modules/should-dsl
diff options
context:
space:
mode:
authorJaakko Luttinen <jaakko.luttinen@iki.fi>2018-10-27 14:52:21 +0300
committerMaximilian Bosch <maximilian@mbosch.me>2018-11-29 12:38:26 +0100
commit2fe089c870125f7d05342a560b0db159218191f8 (patch)
treef3e2a72b50f4f6394c9d8dcfb95f848db2b0a553 /pkgs/development/python-modules/should-dsl
parent8b472e3739dbcb2fa832f936a665280996c6879d (diff)
pythonPackages.should-dsl: init at 2.1.2
Diffstat (limited to 'pkgs/development/python-modules/should-dsl')
-rw-r--r--pkgs/development/python-modules/should-dsl/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/should-dsl/default.nix b/pkgs/development/python-modules/should-dsl/default.nix
new file mode 100644
index 0000000000000..987d7e60cea60
--- /dev/null
+++ b/pkgs/development/python-modules/should-dsl/default.nix
@@ -0,0 +1,22 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+
+buildPythonPackage rec {
+  pname = "should-dsl";
+  version = "2.1.2";
+
+  src = fetchPypi {
+    inherit version;
+    pname = "should_dsl";
+    sha256 = "0ai30dxgygwzaj9sgdzyfr9p5b7gwc9piq59nzr4xy5x1zcm7xrn";
+  };
+
+  # There are no tests
+  doCheck = false;
+
+  meta = with stdenv.lib; {
+    description = "Should assertions in Python as clear and readable as possible";
+    homepage = http://www.should-dsl.info/;
+    license = licenses.mit;
+    maintainers = with maintainers; [ jluttine ];
+  };
+}