portfolio: 0.71.2 -> 0.72.2 (#360387)
[NixPkgs.git] / pkgs / development / python-modules / rpmfluff / default.nix
blob2b60f24e7d3966d499329dc1ce1b9e5c0895c8c4
2   lib,
3   buildPythonPackage,
4   fetchurl,
5   glibcLocales,
6 }:
8 buildPythonPackage rec {
9   pname = "rpmfluff";
10   version = "0.5.7.1";
11   format = "setuptools";
13   src = fetchurl {
14     url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.xz";
15     sha256 = "19vnlzma8b0aghdiixk0q3wc10y6306hsnic0qvswaaiki94fss1";
16   };
18   LC_ALL = "en_US.utf-8";
19   buildInputs = [ glibcLocales ];
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   };