python312Packages.dash-renderer: remove (#369714)
[NixPkgs.git] / pkgs / development / python-modules / rpmfile / default.nix
blobda05ba50a2717a04e6ffc4b3562bdb0e6e738e5c
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   setuptools-scm,
6 }:
7 buildPythonPackage rec {
8   pname = "rpmfile";
9   version = "2.1.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     hash = "sha256-CsK7qJJ3xxhcuGHJxtfQyaJovlFpUW28amjxVWqeP5k=";
15   };
17   # Tests access the internet
18   doCheck = false;
20   nativeBuildInputs = [ setuptools-scm ];
22   pythonImportsCheck = [ "rpmfile" ];
24   meta = with lib; {
25     description = "Read rpm archive files";
26     mainProgram = "rpmfile";
27     homepage = "https://github.com/srossross/rpmfile";
28     license = licenses.mit;
29     maintainers = [ ];
30   };