1 { lib, buildPythonPackage, fetchgit, six }:
3 buildPythonPackage rec {
4 pname = "python-linux-procfs";
8 url = "https://git.kernel.org/pub/scm/libs/python/${pname}/${pname}.git";
10 hash = "sha256-PPgMlL9oj4HYUsr444ZrGo1LSZBl9hL5SE98IASUpbc=";
13 propagatedBuildInputs = [ six ];
17 pythonImportsCheck = [ "procfs" ];
20 description = "Python classes to extract information from the Linux kernel /proc files";
21 homepage = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/";
22 license = licenses.gpl2Plus;
23 maintainers = with maintainers; [ elohmeier ];