python312Packages.python-linux-procfs: 0.6.3 -> 0.7.3

This commit is contained in:
Robert Schütz
2024-07-23 07:22:22 -07:00
parent 4ce93feb84
commit f46e45c103

View File

@@ -1,21 +1,24 @@
{ {
lib, lib,
buildPythonPackage, buildPythonPackage,
fetchzip, fetchurl,
setuptools,
six, six,
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "python-linux-procfs"; pname = "python-linux-procfs";
version = "0.6.3"; version = "0.7.3";
format = "setuptools"; pyproject = true;
src = fetchzip { src = fetchurl {
url = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/snapshot/python-linux-procfs-v${version}.tar.gz"; url = "https://git.kernel.org/pub/scm/libs/python/python-linux-procfs/python-linux-procfs.git/snapshot/python-linux-procfs-v${version}.tar.gz";
hash = "sha256-iaKL7CWJbIvvcUCah7bKdwKZoZJehbQpZ7n0liO8N64="; hash = "sha256-6js8+PBqMwNYSe74zqZP8CZ5nt1ByjCWnex+wBY/LZU=";
}; };
propagatedBuildInputs = [ six ]; build-system = [ setuptools ];
dependencies = [ six ];
# contains no tests # contains no tests
doCheck = false; doCheck = false;