Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 800dd4b7da5c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d3a41f3c23b5
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Apr 22, 2020

  1. pythonPackages.pyroma: init at 2.6

    evanjs authored and Jon committed Apr 22, 2020

    Verified

    This commit was signed with the committer’s verified signature.
    woodruffw William Woodruff
    Copy the full SHA
    d3a41f3 View commit details
Showing with 23 additions and 0 deletions.
  1. +21 −0 pkgs/development/python-modules/pyroma/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
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
@@ -3270,6 +3270,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 { };