about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pebble
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2021-01-30 11:28:36 +0000
committerGitHub <noreply@github.com>2021-01-30 12:28:36 +0100
commit1d8c7f5499d922b3f6574cf3214ca81d94e2c637 (patch)
treef67a4ee3f35995b0787713c66db788409eafdb07 /pkgs/development/python-modules/pebble
parentd6d4228b39b7bd71ea64f597359612ff9557f4f8 (diff)
python3Packages.pebble: init at 4.6.0 (#111276)
Diffstat (limited to 'pkgs/development/python-modules/pebble')
-rw-r--r--pkgs/development/python-modules/pebble/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pebble/default.nix b/pkgs/development/python-modules/pebble/default.nix
new file mode 100644
index 0000000000000..68aa1ba970753
--- /dev/null
+++ b/pkgs/development/python-modules/pebble/default.nix
@@ -0,0 +1,24 @@
+{ lib, buildPythonPackage, isPy27, fetchPypi, pytestCheckHook }:
+
+buildPythonPackage rec {
+  pname = "pebble";
+  version = "4.6.0";
+  disabled = isPy27;
+
+  src = fetchPypi {
+    pname = "Pebble";
+    inherit version;
+    sha256 = "0a595f7mrf89xlck9b2x83bqybc9zd9jxkl0sa5cf19vax18rg8h";
+  };
+
+  checkInputs = [
+    pytestCheckHook
+  ];
+
+  meta = with lib; {
+    description = "API to manage threads and processes within an application";
+    homepage = "https://github.com/noxdafox/pebble";
+    license = licenses.lgpl3Plus;
+    maintainers = with maintainers; [ orivej ];
+  };
+}