1{ stdenv, buildPythonPackage, fetchurl }: 2 3buildPythonPackage rec { 4 pname = "rpmfluff"; 5 version = "0.5.3"; 6 name = "${pname}-${version}"; 7 8 src = fetchurl { 9 url = "https://releases.pagure.org/${pname}/${name}.tar.xz"; 10 sha256 = "1i45f012ngpxs83m3dpmaj3hs8z7r9sbf05vnvzgs3hpgsbhxa7r"; 11 }; 12 13 meta = with stdenv.lib; { 14 description = "lightweight way of building RPMs, and sabotaging them"; 15 homepage = https://pagure.io/rpmfluff; 16 license = licenses.gpl2; 17 maintainers = with maintainers; [ disassembler ]; 18 }; 19 20}