python-cgroup-utils: init at 0.6

This commit is contained in:
Guillaume Maudoux 2015-08-10 20:45:45 +02:00
parent 73c61b6286
commit 96a1539256
2 changed files with 24 additions and 0 deletions

View file

@ -143,6 +143,7 @@
kragniz = "Louis Taylor <kragniz@gmail.com>";
ktosiek = "Tomasz Kontusz <tomasz.kontusz@gmail.com>";
lassulus = "Lassulus <lassulus@gmail.com>";
layus = "Guillaume Maudoux <layus.on@gmail.com>";
lebastr = "Alexander Lebedev <lebastr@gmail.com>";
leonardoce = "Leonardo Cecchi <leonardo.cecchi@gmail.com>";
lethalman = "Luca Bruno <lucabru@src.gnome.org>";

View file

@ -1104,6 +1104,29 @@ let
propagatedBuildInputs = with self; [ boto crcmod psutil ];
};
cgroup-utils = buildPythonPackage rec {
version = "0.6";
name = "cgroup-utils-${version}";
propagatedBuildInputs = with self; [ argparse ];
buildInputs = with self; [ pep8 nose ];
# Pep8 tests fail...
doCheck = false;
src = pkgs.fetchFromGitHub {
owner = "peo3";
repo = "cgroup-utils";
rev = "v${version}";
sha256 = "1ck0aijzrg9xf6hjdxnynkapnyxw0y385jb0q7wyq4jf77ayfszc";
};
meta = {
description = "Utility tools for control groups of Linux";
maintainers = with maintainers; [ layus ];
license = licenses.gpl2;
};
};
circus = buildPythonPackage rec {
name = "circus-0.11.1";