Skip to content

Commit

Permalink
pythonPackages.pyroma: init at 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
evanjs committed Apr 20, 2020
1 parent f76d7b5 commit 757086b
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
21 changes: 21 additions & 0 deletions pkgs/development/python-modules/pyroma/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3266,6 +3266,8 @@ in {

peewee = callPackage ../development/python-modules/peewee { };

pyroma = callPackage ../development/python-modules/pyroma { };

pyroute2 = callPackage ../development/python-modules/pyroute2 { };

pyspf = callPackage ../development/python-modules/pyspf { };
Expand Down

0 comments on commit 757086b

Please sign in to comment.