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

Commits on Dec 5, 2018

  1. Verified

    This commit was signed with the committer’s verified signature.
    costrouc Christopher Ostrouchov
    Copy the full SHA
    47f54a4 View commit details
  2. Merge pull request #51575 from costrouc/costrouc/update-parsimonious

    pythonPackages.parsimonious: 0.7.0 -> 0.8.1
    worldofpeace authored Dec 5, 2018

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    e9a44ba View commit details
Showing with 7 additions and 8 deletions.
  1. +7 −8 pkgs/development/python-modules/parsimonious/default.nix
15 changes: 7 additions & 8 deletions pkgs/development/python-modules/parsimonious/default.nix
Original file line number Diff line number Diff line change
@@ -1,22 +1,21 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
, fetchPypi
, nose
, six
}:

buildPythonPackage rec {
version = "0.7.0";
version = "0.8.1";
pname = "parsimonious";

src = fetchFromGitHub {
repo = "parsimonious";
owner = "erikrose";
rev = version;
sha256 = "087npc8ccryrxabmqifcz56w4wd0hzmv0mc91wrbhc1sil196j0a";
src = fetchPypi {
inherit pname version;
sha256 = "3add338892d580e0cb3b1a39e4a1b427ff9f687858fdd61097053742391a9f6b";
};

propagatedBuildInputs = [ nose six ];
checkInputs = [ nose ];
propagatedBuildInputs = [ six ];

meta = with stdenv.lib; {
homepage = "https://github.com/erikrose/parsimonious";