summaryrefslogtreecommitdiffstats
path: root/jeschli/5pkgs/firefox/pyocclient
diff options
context:
space:
mode:
authorJeschli <jeschli@gmail.com>2020-04-23 19:47:18 +0200
committerJeschli <jeschli@gmail.com>2020-04-23 20:18:56 +0200
commitbe388387c629fc3f2da03d8de611eab9c5f2eb35 (patch)
tree47ea72424e8439a9dd9b7e9d41db403f647e40d5 /jeschli/5pkgs/firefox/pyocclient
parent352c1aa944b4f175f9d6578f16f339e3126d15e6 (diff)
j firefox: overlay from 2configs -> 5pkgs/firefox
Diffstat (limited to 'jeschli/5pkgs/firefox/pyocclient')
-rw-r--r--jeschli/5pkgs/firefox/pyocclient/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/jeschli/5pkgs/firefox/pyocclient/default.nix b/jeschli/5pkgs/firefox/pyocclient/default.nix
new file mode 100644
index 0000000..cd91f61
--- /dev/null
+++ b/jeschli/5pkgs/firefox/pyocclient/default.nix
@@ -0,0 +1,26 @@
+{ lib, python37Packages }:
+
+python37Packages.buildPythonPackage rec {
+ pname = "pyocclient";
+ version = "0.4";
+
+ src = python37Packages.fetchPypi {
+ inherit pname version;
+ sha256 = "19k3slrk2idixsdw61in9a3jxglvkigkn5kvwl37lj8hrwr4yq6q";
+ };
+
+ doCheck = false;
+
+ propagatedBuildInputs = with python37Packages; [
+ requests
+ six
+ ];
+
+ meta = with lib; {
+ homepage = https://github.com/owncloud/pyocclient/;
+ description = "Nextcloud / Owncloud library for python";
+ license = licenses.mit;
+ maintainers = with maintainers; [ ];
+ };
+
+}