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

Commits on Mar 11, 2019

  1. python37Packages.rply: 0.7.6 -> 0.7.7

    Semi-automatic update generated by
    https://github.com/ryantm/nixpkgs-update tools. This update was made
    based on information from
    https://repology.org/metapackage/python3.7-rply/versions
    r-ryantm committed Mar 11, 2019
    Copy the full SHA
    0ab768e View commit details

Commits on Mar 15, 2019

  1. python.pkgs.rply: use propagatedBuildInputs

    Robert Schütz committed Mar 15, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    jtojnar Jan Tojnar
    Copy the full SHA
    d5adfca View commit details
  2. Merge pull request #57453 from r-ryantm/auto-update/python3.7-rply

    python37Packages.rply: 0.7.6 -> 0.7.7
    dotlambda authored Mar 15, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    jtojnar Jan Tojnar
    Copy the full SHA
    1bec0ba View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/rply/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/rply/default.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildPythonPackage rec {
pname = "rply";
version = "0.7.6";
version = "0.7.7";

src = fetchFromGitHub {
owner = "alex";
repo = "rply";
rev = "v${version}";
sha256 = "0a9r81kaibgr26psss02rn2nc6bf84a8q9nsywkm1xcswy8xrmcx";
sha256 = "1qv37hn7hhxd388znri76g0zjxsbwhxhcaic94dvw9pq4l60vqp6";
};

buildInputs = [ appdirs ];
propagatedBuildInputs = [ appdirs ];

checkInputs = [ pytest ];
checkPhase = ''