rpmfluff: init at 0.5.3
This commit is contained in:
parent
06e2b99546
commit
673e8caab2
20
pkgs/development/python-modules/rpmfluff/default.nix
Normal file
20
pkgs/development/python-modules/rpmfluff/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ stdenv, buildPythonPackage, fetchurl }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "rpmfluff";
|
||||
version = "0.5.3";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://releases.pagure.org/${pname}/${name}.tar.xz";
|
||||
sha256 = "1i45f012ngpxs83m3dpmaj3hs8z7r9sbf05vnvzgs3hpgsbhxa7r";
|
||||
};
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "lightweight way of building RPMs, and sabotaging them";
|
||||
homepage = https://pagure.io/rpmfluff;
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ disassembler ];
|
||||
};
|
||||
|
||||
}
|
@ -19462,6 +19462,8 @@ in {
|
||||
|
||||
rpm = (pkgs.rpm.override{inherit python;});
|
||||
|
||||
rpmfluff = callPackage ../development/python-modules/rpmfluff {};
|
||||
|
||||
rpy2 = buildPythonPackage rec {
|
||||
name = "rpy2-2.8.2";
|
||||
disabled = isPyPy;
|
||||
|
Loading…
Reference in New Issue
Block a user