rpmfluff: init at 0.5.3

This commit is contained in:
Samuel Leathers 2017-09-15 23:38:39 -04:00
parent 06e2b99546
commit 673e8caab2
2 changed files with 22 additions and 0 deletions

View 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 ];
};
}

View File

@ -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;