about summary refs log tree commit diff
path: root/pkgs/development/python-modules/werkzeug
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2021-06-02 23:31:50 +0200
committerJonathan Ringer <jonringer117@gmail.com>2021-06-21 16:48:38 -0700
commitd8def3a0abbfcb343afb8efe2fdf1786331ab4b8 (patch)
treefa0553734d8f7c3f282d0709ea4a29c39553b629 /pkgs/development/python-modules/werkzeug
parent6d0ed6486e90641658517e910c3e361bede0e162 (diff)
python2Packages.werkzeug: reinit at 1.0.1
Diffstat (limited to 'pkgs/development/python-modules/werkzeug')
-rw-r--r--pkgs/development/python-modules/werkzeug/1.nix30
1 files changed, 30 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/werkzeug/1.nix b/pkgs/development/python-modules/werkzeug/1.nix
new file mode 100644
index 0000000000000..73bebd8366ecd
--- /dev/null
+++ b/pkgs/development/python-modules/werkzeug/1.nix
@@ -0,0 +1,30 @@
+{ lib, stdenv, buildPythonPackage, fetchPypi
+, itsdangerous, hypothesis
+, pytestCheckHook, requests
+, pytest-timeout
+, isPy3k
+ }:
+
+buildPythonPackage rec {
+  pname = "Werkzeug";
+  version = "1.0.1";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "6c80b1e5ad3665290ea39320b91e1be1e0d5f60652b964a3070216de83d2e47c";
+  };
+
+  propagatedBuildInputs = [ itsdangerous ];
+  checkInputs = [ pytestCheckHook requests hypothesis pytest-timeout ];
+
+  disabledTests = lib.optionals stdenv.isDarwin [
+    "test_get_machine_id"
+  ];
+
+  meta = with lib; {
+    homepage = "https://palletsprojects.com/p/werkzeug/";
+    description = "A WSGI utility library for Python";
+    license = licenses.bsd3;
+    maintainers = [ ];
+  };
+}