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

Commits on Nov 4, 2020

  1. Copy the full SHA
    74a37c6 View commit details

Commits on Nov 6, 2020

  1. Copy the full SHA
    17fc388 View commit details

Commits on Nov 7, 2020

  1. Merge pull request #102821 from r-ryantm/auto-update/python2.7-iniconfig

    python27Packages.iniconfig: 1.0.1 -> 1.1.1
    marsam authored Nov 7, 2020
    Copy the full SHA
    960b023 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/python-modules/iniconfig/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/python-modules/iniconfig/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,19 @@

buildPythonPackage rec {
pname = "iniconfig";
version = "1.0.1";
version = "1.1.1";

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

doCheck = false; # avoid circular import with pytest
pythonImportsCheck = [ "iniconfig" ];

meta = with lib; {
description = "brain-dead simple parsing of ini files";
homepage = "https://github.com/CHANGE/iniconfig/";
homepage = "https://github.com/RonnyPfannschmidt/iniconfig";
license = licenses.mit;
maintainers = with maintainers; [ jonringer ];
};