summary refs log tree commit diff
path: root/pkgs/development/python-modules/rpmfluff
diff options
context:
space:
mode:
authorSamuel Leathers <sam@appliedtrust.com>2017-09-15 23:38:39 -0400
committerSamuel Leathers <sam@appliedtrust.com>2017-09-16 00:11:05 -0400
commit673e8caab287b8903070ca7e0afe8106f5f7956e (patch)
tree5f8411dcc648f1d52bda77682d33f68319e34aaf /pkgs/development/python-modules/rpmfluff
parent06e2b99546a9f741ca9be4b48faf3d6177591fd8 (diff)
downloadnixlib-673e8caab287b8903070ca7e0afe8106f5f7956e.tar
nixlib-673e8caab287b8903070ca7e0afe8106f5f7956e.tar.gz
nixlib-673e8caab287b8903070ca7e0afe8106f5f7956e.tar.bz2
nixlib-673e8caab287b8903070ca7e0afe8106f5f7956e.tar.lz
nixlib-673e8caab287b8903070ca7e0afe8106f5f7956e.tar.xz
nixlib-673e8caab287b8903070ca7e0afe8106f5f7956e.tar.zst
nixlib-673e8caab287b8903070ca7e0afe8106f5f7956e.zip
rpmfluff: init at 0.5.3
Diffstat (limited to 'pkgs/development/python-modules/rpmfluff')
-rw-r--r--pkgs/development/python-modules/rpmfluff/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/rpmfluff/default.nix b/pkgs/development/python-modules/rpmfluff/default.nix
new file mode 100644
index 000000000000..c6cd2521292a
--- /dev/null
+++ b/pkgs/development/python-modules/rpmfluff/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, buildPythonPackage, fetchurl }:
+
+buildPythonPackage rec {
+  pname = "rpmfluff";
+  version = "0.5.3";
+  name  = "${pname}-${version}";
+
+  src = fetchurl {
+    url = "https://releases.pagure.org/${pname}/${name}.tar.xz";
+    sha256 = "1i45f012ngpxs83m3dpmaj3hs8z7r9sbf05vnvzgs3hpgsbhxa7r";
+  };
+
+  meta = with stdenv.lib; {
+    description = "lightweight way of building RPMs, and sabotaging them";
+    homepage = https://pagure.io/rpmfluff;
+    license = licenses.gpl2;
+    maintainers = with maintainers; [ disassembler ];
+  };
+
+}