diff options
author | makefu <github@syntax-fehler.de> | 2016-02-03 21:17:46 +0100 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2016-02-03 21:17:46 +0100 |
commit | a350db5ce9e3fcf27678a2b9bb6685358b63742a (patch) | |
tree | 931e4342fc66da3372a092a3e9018094933a7600 /krebs/5pkgs/cac-panel | |
parent | 5bc7523bb54e960f5ac00492b16519b1bce21007 (diff) |
cacpanel 0.2.3 -> cac-panel 0.4.4
Diffstat (limited to 'krebs/5pkgs/cac-panel')
-rw-r--r-- | krebs/5pkgs/cac-panel/default.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/krebs/5pkgs/cac-panel/default.nix b/krebs/5pkgs/cac-panel/default.nix new file mode 100644 index 000000000..fd4799535 --- /dev/null +++ b/krebs/5pkgs/cac-panel/default.nix @@ -0,0 +1,18 @@ +{pkgs, python3Packages, ...}: + +python3Packages.buildPythonPackage rec { + name = "cac-panel-${version}"; + version = "0.4.4"; + + src = pkgs.fetchurl { + url = "https://pypi.python.org/packages/source/c/cac-panel/cac-panel-${version}.tar.gz"; + sha256 = "16bx67fsbgwxciik42jhdnfzxx1xp5b0rimzrif3r7h4fawlnld8"; + }; + + propagatedBuildInputs = with python3Packages; [ + docopt + requests2 + beautifulsoup4 + ]; +} + |