2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi
|
2020-04-10 20:40:18 +01:00
|
|
|
, docutils, pygments, setuptools
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyroma";
|
|
|
|
version = "2.6";
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "00j1j81kiipi5yppmk385cbfccf2ih0xyapl7pw6nqhrf8vh1764";
|
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ docutils pygments setuptools ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-10 20:40:18 +01:00
|
|
|
description = "Test your project's packaging friendliness";
|
|
|
|
homepage = "https://github.com/regebro/pyroma";
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|