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:20:53 +0100 |
commit | fdc4fa5c98aaabfb31be7e7f219ca2b134172cf9 (patch) | |
tree | 0dabb5440fab994c4e354c6cfdefd8a17ebb97da /krebs/5pkgs/cac-panel | |
parent | 44e0c5153ca6a65ee130f30ea8466906deedcada (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 + ]; +} + |