diff options
author | makefu <github@syntax-fehler.de> | 2015-11-06 22:23:46 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2015-11-06 22:23:46 +0100 |
commit | 736e1426d5a7ec76d0987840552d56c6b4f0248e (patch) | |
tree | 944c5595dfbb2c66dfe934d48cc8349522c91aa8 /krebs/5pkgs/bepasty-client-cli | |
parent | 2dcb2918d1cd159d9282096ef3b5cecc4239bfbc (diff) | |
parent | 12597b1febb0bc47cf98529a12e5fc6af1d8f5a4 (diff) |
Merge branch 'master' of pnp:stockholm
Diffstat (limited to 'krebs/5pkgs/bepasty-client-cli')
-rw-r--r-- | krebs/5pkgs/bepasty-client-cli/default.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/krebs/5pkgs/bepasty-client-cli/default.nix b/krebs/5pkgs/bepasty-client-cli/default.nix new file mode 100644 index 000000000..990f99af6 --- /dev/null +++ b/krebs/5pkgs/bepasty-client-cli/default.nix @@ -0,0 +1,22 @@ +{ lib, pkgs, pythonPackages, fetchurl, ... }: + +with pythonPackages; buildPythonPackage rec { + name = "bepasty-client-cli-${version}"; + version = "0.3.0"; + propagatedBuildInputs = [ + python_magic + click + requests2 + ]; + + src = fetchurl { + url = "https://pypi.python.org/packages/source/b/bepasty-client-cli/bepasty-client-cli-${version}.tar.gz"; + sha256 = "002kcplyfnmr5pn2ywdfilss0rmbm8wcdzz8hzp03ksy2zr4sdbw"; + }; + + meta = { + homepage = https://github.com/bepasty/bepasty-client-cli; + description = "CLI client for bepasty-server"; + license = lib.licenses.bsd2; + }; +} |