summary refs log tree commit diff
path: root/pkgs/development/python-modules/libtmux
diff options
context:
space:
mode:
authorrnhmjoj <micheleguerinirocco@me.com>2017-06-03 13:49:35 +0200
committerrnhmjoj <micheleguerinirocco@me.com>2017-06-03 13:49:35 +0200
commit11236d9baaa825bad45a72ff9ee1640da4d2d95e (patch)
tree6bce3577aee68834a716bd599effc4e39399b847 /pkgs/development/python-modules/libtmux
parent805ee69aa3f04e1d58a2f651fcebc63db2014d43 (diff)
downloadnixlib-11236d9baaa825bad45a72ff9ee1640da4d2d95e.tar
nixlib-11236d9baaa825bad45a72ff9ee1640da4d2d95e.tar.gz
nixlib-11236d9baaa825bad45a72ff9ee1640da4d2d95e.tar.bz2
nixlib-11236d9baaa825bad45a72ff9ee1640da4d2d95e.tar.lz
nixlib-11236d9baaa825bad45a72ff9ee1640da4d2d95e.tar.xz
nixlib-11236d9baaa825bad45a72ff9ee1640da4d2d95e.tar.zst
nixlib-11236d9baaa825bad45a72ff9ee1640da4d2d95e.zip
pythonPackages.libtmux: 0.6.4 -> 0.7.3
Diffstat (limited to 'pkgs/development/python-modules/libtmux')
-rw-r--r--pkgs/development/python-modules/libtmux/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/libtmux/default.nix b/pkgs/development/python-modules/libtmux/default.nix
new file mode 100644
index 000000000000..203b9e6bf754
--- /dev/null
+++ b/pkgs/development/python-modules/libtmux/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchPypi, buildPythonPackage, pytest_29 }:
+
+buildPythonPackage rec {
+  name = "${pname}-${version}";
+  pname = "libtmux";
+  version = "0.7.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "111qbgq28za12la5b0aa9rr7hg8235zy0kyzzryn7fa6z3i5k5z8";
+  };
+
+  buildInputs = [ pytest_29 ];
+  patchPhase = ''
+    sed -i 's/==.*$//' requirements/test.txt
+  '';
+
+  meta = with stdenv.lib; {
+    description = "Scripting library for tmux";
+    homepage = https://libtmux.readthedocs.io/;
+    license = licenses.bsd3;
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ jgeerds ];
+  };
+}
+