about summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2019-02-16 22:05:24 -0800
committerGitHub <noreply@github.com>2019-02-16 22:05:24 -0800
commit9cb5760d26dd43fff83e10c74905b50c4d0f3b4f (patch)
tree8a55ebe3b5e941a5317166fffaa110cd205962c9 /pkgs/development/python-modules
parent55fa35661386729951ece670e1f6823f2059e3c2 (diff)
parent6916289d3363cfa412aad7a9664c822dc4b0329a (diff)
downloadnixlib-9cb5760d26dd43fff83e10c74905b50c4d0f3b4f.tar
nixlib-9cb5760d26dd43fff83e10c74905b50c4d0f3b4f.tar.gz
nixlib-9cb5760d26dd43fff83e10c74905b50c4d0f3b4f.tar.bz2
nixlib-9cb5760d26dd43fff83e10c74905b50c4d0f3b4f.tar.lz
nixlib-9cb5760d26dd43fff83e10c74905b50c4d0f3b4f.tar.xz
nixlib-9cb5760d26dd43fff83e10c74905b50c4d0f3b4f.tar.zst
nixlib-9cb5760d26dd43fff83e10c74905b50c4d0f3b4f.zip
Merge pull request #55839 from aanderse/beanstalkc
beanstalkc: init at 0.4.0
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/beanstalkc/default.nix18
1 files changed, 18 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/beanstalkc/default.nix b/pkgs/development/python-modules/beanstalkc/default.nix
new file mode 100644
index 000000000000..9ac9cf831eb3
--- /dev/null
+++ b/pkgs/development/python-modules/beanstalkc/default.nix
@@ -0,0 +1,18 @@
+{ stdenv, fetchPypi, buildPythonPackage }:
+
+buildPythonPackage rec {
+  pname = "beanstalkc";
+  version = "0.4.0";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "98978e57797320146f4b233286d9a02f65d20bad0168424118839fc608085280";
+  };
+
+  meta = {
+    description = "A simple beanstalkd client library for Python";
+    maintainers = with stdenv.lib.maintainers; [ aanderse ];
+    license = with stdenv.lib.licenses; [ asl20 ];
+    homepage = https://github.com/earl/beanstalkc;
+  };
+}