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