d10ba86b91
python310Packages.rpmfile: 1.0.8 -> 1.1.1
32 lines
570 B
Nix
32 lines
570 B
Nix
{ lib
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, setuptools-scm
|
|
}:
|
|
buildPythonPackage rec {
|
|
pname = "rpmfile";
|
|
version = "1.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-ZxcHe1QxdG2GBIPMNrnJy6Vd8SRgZ4HOtwsks2be8Cs=";
|
|
};
|
|
|
|
# Tests access the internet
|
|
doCheck = false;
|
|
|
|
nativeBuildInputs = [
|
|
setuptools-scm
|
|
];
|
|
|
|
pythonImportsCheck = [
|
|
"rpmfile"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Read rpm archive files";
|
|
homepage = "https://github.com/srossross/rpmfile";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|