diff options
author | lassulus <lassulus@lassul.us> | 2020-04-24 15:31:55 +0200 |
---|---|---|
committer | lassulus <lassulus@lassul.us> | 2020-04-24 15:31:55 +0200 |
commit | 36223e201b5726fa0100d327903ee5e733db658f (patch) | |
tree | 67389161b8898c5b1737573e9c489d1e7fcf65fa /jeschli/5pkgs/firefox/pyocclient | |
parent | 2fec0118dcfc56f1af974e5e7f3e29fdbc30a85a (diff) | |
parent | bce038373a3477cd23758a038104b560404748dc (diff) |
Merge remote-tracking branch 'enklave/master'
Diffstat (limited to 'jeschli/5pkgs/firefox/pyocclient')
-rw-r--r-- | jeschli/5pkgs/firefox/pyocclient/default.nix | 26 |
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 000000000..cd91f6171 --- /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; [ ]; + }; + +} |