9 buildPythonPackage rec {
10 pname = "python-linux-procfs";
15 url = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/snapshot/python-linux-procfs-v${version}.tar.gz";
16 hash = "sha256-6js8+PBqMwNYSe74zqZP8CZ5nt1ByjCWnex+wBY/LZU=";
19 build-system = [ setuptools ];
21 dependencies = [ six ];
25 pythonImportsCheck = [ "procfs" ];
28 description = "Python classes to extract information from the Linux kernel /proc files";
29 mainProgram = "pflags";
30 homepage = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/";
31 license = licenses.gpl2Plus;