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

Commits on Jun 2, 2019

  1. python37Packages.aspy-yaml: 1.1.2 -> 1.3.0

    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-aspy.yaml/versions
    r-ryantm committed Jun 2, 2019
    Copy the full SHA
    655b1ef View commit details
  2. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    da057da View commit details
  3. Merge pull request #62514 from r-ryantm/auto-update/python3.7-aspy.yaml

    python37Packages.aspy-yaml: 1.1.2 -> 1.3.0
    marsam authored Jun 2, 2019
    Copy the full SHA
    7419e47 View commit details
Showing with 4 additions and 4 deletions.
  1. +2 −2 pkgs/applications/version-management/git-and-tools/pre-commit/default.nix
  2. +2 −2 pkgs/development/python-modules/aspy.yaml/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ stdenv, python3Packages }:
with python3Packages; buildPythonApplication rec {
pname = "pre-commit";
version = "1.15.2";
version = "1.16.1";

src = fetchPypi {
inherit version;
pname = "pre_commit";
sha256 = "1if44rfzmrw9m2k47kiplccby1lfdrlq82jlz4p91wwqc1vs4xi5";
sha256 = "6ca409d1f22d444af427fb023a33ca8b69625d508a50e1b7eaabd59247c93043";
};

propagatedBuildInputs = [
4 changes: 2 additions & 2 deletions pkgs/development/python-modules/aspy.yaml/default.nix
Original file line number Diff line number Diff line change
@@ -2,11 +2,11 @@

buildPythonPackage rec {
pname = "aspy.yaml";
version = "1.1.2";
version = "1.3.0";

src = fetchPypi {
inherit pname version;
sha256 = "5eaaacd0886e8b581f0e4ff383fb6504720bb2b3c7be17307724246261a41adf";
sha256 = "0i9z2jm2hjwdxdv4vw4kbs70h2ciz49rv8w73zbawb7z5qw45iz7";
};

propagatedBuildInputs = [ pyyaml ];