about summary refs log tree commit diff
path: root/pkgs/development/python-modules/plaster-pastedeploy
diff options
context:
space:
mode:
authormakefu <github@syntax-fehler.de>2017-09-25 13:39:07 +0200
committermakefu <github@syntax-fehler.de>2017-09-25 23:23:38 +0200
commitdcc36a4a043c9c7a94afedae2685f7df1c7356dc (patch)
tree70e7082e22bb55ee3cd74a430a2343a175989e7c /pkgs/development/python-modules/plaster-pastedeploy
parentd00ba8091f0a97e63ebdc426eb20eb95e42bba10 (diff)
downloadnixlib-dcc36a4a043c9c7a94afedae2685f7df1c7356dc.tar
nixlib-dcc36a4a043c9c7a94afedae2685f7df1c7356dc.tar.gz
nixlib-dcc36a4a043c9c7a94afedae2685f7df1c7356dc.tar.bz2
nixlib-dcc36a4a043c9c7a94afedae2685f7df1c7356dc.tar.lz
nixlib-dcc36a4a043c9c7a94afedae2685f7df1c7356dc.tar.xz
nixlib-dcc36a4a043c9c7a94afedae2685f7df1c7356dc.tar.zst
nixlib-dcc36a4a043c9c7a94afedae2685f7df1c7356dc.zip
pyramid: 1.7 -> 1.9.1
Diffstat (limited to 'pkgs/development/python-modules/plaster-pastedeploy')
-rw-r--r--pkgs/development/python-modules/plaster-pastedeploy/default.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/plaster-pastedeploy/default.nix b/pkgs/development/python-modules/plaster-pastedeploy/default.nix
new file mode 100644
index 000000000000..330ecfc7c672
--- /dev/null
+++ b/pkgs/development/python-modules/plaster-pastedeploy/default.nix
@@ -0,0 +1,22 @@
+{ buildPythonPackage, fetchPypi, python
+, plaster, PasteDeploy
+, pytest, pytestcov
+}:
+
+buildPythonPackage rec {
+  pname = "plaster_pastedeploy";
+  version = "0.4.1";
+  name = "${pname}-${version}";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1lrbkya5birfmg9gnfcnsa9id28klmjcqbm33rcg69pv9sfld4jv";
+  };
+
+  checkPhase = ''
+    py.test
+  '';
+
+  propagatedBuildInputs = [ plaster PasteDeploy ];
+  checkInputs = [ pytest pytestcov ];
+}