1{
2 lib,
3 buildPythonPackage,
4 fetchurl,
5 glibcLocales,
6}:
7
8buildPythonPackage rec {
9 pname = "rpmfluff";
10 version = "0.5.7.1";
11 format = "setuptools";
12
13 src = fetchurl {
14 url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.xz";
15 sha256 = "19vnlzma8b0aghdiixk0q3wc10y6306hsnic0qvswaaiki94fss1";
16 };
17
18 LC_ALL = "en_US.utf-8";
19 buildInputs = [ glibcLocales ];
20
21 meta = with lib; {
22 description = "Lightweight way of building RPMs, and sabotaging them";
23 homepage = "https://pagure.io/rpmfluff";
24 license = licenses.gpl2;
25 maintainers = with maintainers; [ disassembler ];
26 };
27}