ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / rpmfluff / default.nix
blob9957393770b354604fcc77a622f99f61491bf0b6
1 { lib
2 , buildPythonPackage
3 , fetchurl
4 , glibcLocales
5 }:
7 buildPythonPackage rec {
8   pname = "rpmfluff";
9   version = "0.5.7.1";
11   src = fetchurl {
12   url = "https://releases.pagure.org/${pname}/${pname}-${version}.tar.xz";
13     sha256 = "19vnlzma8b0aghdiixk0q3wc10y6306hsnic0qvswaaiki94fss1";
14   };
16   LC_ALL="en_US.utf-8";
17   buildInputs = [ glibcLocales ];
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   };