summary refs log tree commit diff
path: root/pkgs/development/python-modules/timeout-decorator
diff options
context:
space:
mode:
authorLancelot SIX <lsix+github@lancelotsix.com>2018-05-22 11:40:26 +0200
committerRobert Schütz <rschuetz17@gmail.com>2018-05-22 11:40:26 +0200
commit05db1a11a9e58d699b32855ce04ebb0f8c26538d (patch)
tree7ee1d9d0a7595043a4181451d96383ef1e7f4a7b /pkgs/development/python-modules/timeout-decorator
parent57d591ec7f386453444f0b2e9765b336cea5f95d (diff)
downloadnixpkgs-05db1a11a9e58d699b32855ce04ebb0f8c26538d.tar
nixpkgs-05db1a11a9e58d699b32855ce04ebb0f8c26538d.tar.gz
nixpkgs-05db1a11a9e58d699b32855ce04ebb0f8c26538d.tar.bz2
nixpkgs-05db1a11a9e58d699b32855ce04ebb0f8c26538d.tar.lz
nixpkgs-05db1a11a9e58d699b32855ce04ebb0f8c26538d.tar.xz
nixpkgs-05db1a11a9e58d699b32855ce04ebb0f8c26538d.tar.zst
nixpkgs-05db1a11a9e58d699b32855ce04ebb0f8c26538d.zip
pythonPackages.timeout-decorator: 0.3.2 -> 0.4.0 (#40914)
Diffstat (limited to 'pkgs/development/python-modules/timeout-decorator')
-rw-r--r--pkgs/development/python-modules/timeout-decorator/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/timeout-decorator/default.nix b/pkgs/development/python-modules/timeout-decorator/default.nix
new file mode 100644
index 00000000000..342531ab976
--- /dev/null
+++ b/pkgs/development/python-modules/timeout-decorator/default.nix
@@ -0,0 +1,16 @@
+{ stdenv, buildPythonPackage, fetchPypi }:
+buildPythonPackage rec {
+  pname = "timeout-decorator";
+  version = "0.4.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "1bckwbi5078z3x9lyf8vl9dhx10nymwwnp46c98wm5m02x5j37g4";
+  };
+
+  meta = with stdenv.lib; {
+    description = "Timeout decorator";
+    license = licenses.mit;
+    homepage = https://github.com/pnpnpn/timeout-decorator;
+  };
+}