1{ stdenv, buildPythonPackage, fetchPypi
2, docutils, pygments, setuptools
3}:
4
5buildPythonPackage rec {
6 pname = "pyroma";
7 version = "2.6";
8
9 src = fetchPypi {
10 inherit pname version;
11 sha256 = "00j1j81kiipi5yppmk385cbfccf2ih0xyapl7pw6nqhrf8vh1764";
12 };
13
14 propagatedBuildInputs = [ docutils pygments setuptools ];
15
16 meta = with stdenv.lib; {
17 description = "Test your project's packaging friendliness";
18 homepage = "https://github.com/regebro/pyroma";
19 license = licenses.mit;
20 };
21}