about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyroma
diff options
context:
space:
mode:
authorEvan Stoll <evanjsx@gmail.com>2020-04-10 15:40:18 -0400
committerJon <jonringer@users.noreply.github.com>2020-04-21 17:17:13 -0700
commitd3a41f3c23b5f7b88613f57d6c7f6b86d662df55 (patch)
tree433342c302e4a608fee9b14480eb0ce602f6d6d4 /pkgs/development/python-modules/pyroma
parent800dd4b7da5cfaa538d6c849cd50d394d9697e0a (diff)
pythonPackages.pyroma: init at 2.6
Diffstat (limited to 'pkgs/development/python-modules/pyroma')
-rw-r--r--pkgs/development/python-modules/pyroma/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pyroma/default.nix b/pkgs/development/python-modules/pyroma/default.nix
new file mode 100644
index 0000000000000..4ec06506b38b7
--- /dev/null
+++ b/pkgs/development/python-modules/pyroma/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, docutils, pygments, setuptools
+}:
+
+buildPythonPackage rec {
+  pname = "pyroma";
+  version = "2.6";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "00j1j81kiipi5yppmk385cbfccf2ih0xyapl7pw6nqhrf8vh1764";
+  };
+
+  propagatedBuildInputs = [ docutils pygments setuptools ];
+
+  meta = with stdenv.lib; {
+    description = "Test your project's packaging friendliness";
+    homepage = "https://github.com/regebro/pyroma";
+    license = licenses.mit;
+  };
+}