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

Commits on Apr 7, 2020

  1. python38Packages.jaraco_classes: 3.0.0 -> 3.1.0

    r-ryantm authored and Jon committed Apr 7, 2020
    Copy the full SHA
    cd5684f View commit details
  2. python2Packges.jaraco_classes: disable for python2

    Abandoned by upstream
    Jonathan Ringer committed Apr 7, 2020
    Copy the full SHA
    eb60e60 View commit details
Showing with 4 additions and 3 deletions.
  1. +4 −3 pkgs/development/python-modules/jaraco_classes/default.nix
7 changes: 4 additions & 3 deletions pkgs/development/python-modules/jaraco_classes/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
{ buildPythonPackage, fetchPypi, setuptools_scm, six, more-itertools }:
{ buildPythonPackage, fetchPypi, isPy27, setuptools_scm, six, more-itertools }:

buildPythonPackage rec {
pname = "jaraco.classes";
version = "3.0.0";
version = "3.1.0";
disabled = isPy27;

src = fetchPypi {
inherit pname version;
sha256 = "886ad165d495e7d18781142d6dda4f0045053a038f9e63c38ef03e2f7127bafc";
sha256 = "1avsxzm5mwylmy2zbxq3xvn48z5djb0qy3hwv4ryncprivzri1n3";
};

nativeBuildInputs = [ setuptools_scm ];