diff options
author | makefu <github@syntax-fehler.de> | 2016-12-06 23:29:22 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-12-06 23:29:22 +0100 |
commit | 531a6ab9a230433d2bb5442a5c2993ef68710779 (patch) | |
tree | 40aa61538ac459fc68004923cc57f84edd6cbb4e /makefu | |
parent | ab5b81b0b4a6396ca3b53fbe414a7aad2845d8bc (diff) |
m 5 acdcli: init
Diffstat (limited to 'makefu')
-rw-r--r-- | makefu/5pkgs/acdcli/default.nix | 20 | ||||
-rw-r--r-- | makefu/5pkgs/default.nix | 1 |
2 files changed, 21 insertions, 0 deletions
diff --git a/makefu/5pkgs/acdcli/default.nix b/makefu/5pkgs/acdcli/default.nix new file mode 100644 index 000000000..1621375e3 --- /dev/null +++ b/makefu/5pkgs/acdcli/default.nix @@ -0,0 +1,20 @@ +{ lib, pkgs, python3Packages, fetchurl, ... }: + +with python3Packages; buildPythonPackage rec { + name = "acdcli-${version}"; + version = "0.3.2"; + propagatedBuildInputs = [ + dateutil colorama fusepy appdirs requests2 requests_toolbelt six + ]; + src = fetchurl { + url = "mirror://pypi/a/acdcli/${name}.tar.gz"; + sha256 = "1ak9xxpyb7n6iyalf2082jpimklakm0fgm7vsv7qcm8wy6vlq2cw"; + }; + doCheck = false; # ImportError: Failed to import test module: tests + postFixup = '' + mv $out/bin/.acd_cli.py-wrapped $out/bin/acd_cli.py + ''; + meta = { + description = "communicate with amazon drive"; + }; +} diff --git a/makefu/5pkgs/default.nix b/makefu/5pkgs/default.nix index 8994b3856..b62f1efa2 100644 --- a/makefu/5pkgs/default.nix +++ b/makefu/5pkgs/default.nix @@ -5,6 +5,7 @@ let in { nixpkgs.config.packageOverrides = rec { + acdcli = callPackage ./acdcli {}; alsa-hdspconf = callPackage ./alsa-tools { alsaToolTarget="hdspconf";}; alsa-hdspmixer = callPackage ./alsa-tools { alsaToolTarget="hdspmixer";}; alsa-hdsploader = callPackage ./alsa-tools { alsaToolTarget="hdsploader";}; |