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: 55cad3550655
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d746c53e2ee1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Nov 7, 2018

  1. Copy the full SHA
    c3668db View commit details

Commits on Nov 12, 2018

  1. Merge pull request #46845 from Twey/plyplus

    python2Packages.plyplus: init at 0.7.5
    samueldr authored Nov 12, 2018
    Copy the full SHA
    d746c53 View commit details
Showing with 23 additions and 0 deletions.
  1. +21 −0 pkgs/development/python-modules/plyplus/default.nix
  2. +2 −0 pkgs/top-level/python-packages.nix
21 changes: 21 additions & 0 deletions pkgs/development/python-modules/plyplus/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{ lib, fetchPypi, buildPythonPackage, ply, isPy3k }:
buildPythonPackage rec {
pname = "PlyPlus";
version = "0.7.5";

src = fetchPypi {
inherit pname version;
sha256 = "0g3flgfm3jpb2d8v9z0qmbwca5gxdqr10cs3zvlfhv5cs06ahpnp";
};

propagatedBuildInputs = [ ply ];

disabled = isPy3k;

meta = {
homepage = https://github.com/erezsh/plyplus;
description = "A general-purpose parser built on top of PLY";
maintainers = with lib.maintainers; [ twey ];
license = lib.licenses.mit;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
@@ -3032,6 +3032,8 @@ in {

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

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

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

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