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: 6f9084711d6f
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 99fa7616c060
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Oct 9, 2020

  1. pythonPackages.sievelib: fix build by adding patch

    this fixes installation with newer pip versions
    
    also give a name to an existing patch
    
    (cherry picked from commit 4d111fd)
    risicle authored and Jon committed Oct 9, 2020
    Copy the full SHA
    99fa761 View commit details
Showing with 6 additions and 0 deletions.
  1. +6 −0 pkgs/development/python-modules/sievelib/default.nix
6 changes: 6 additions & 0 deletions pkgs/development/python-modules/sievelib/default.nix
Original file line number Diff line number Diff line change
@@ -12,9 +12,15 @@ buildPythonPackage rec {

patches = [
(fetchpatch {
name = "pip-10-pip-req.patch";
url = "https://github.com/tonioo/sievelib/commit/1deef0e2bf039a0e817ea6f19aaf1947dc9fafbc.patch";
sha256 = "0vaj73mcij9dism8vfaai82irh8j1b2n8gf9jl1a19d2l26jrflk";
})
(fetchpatch {
name = "requirements-in-setup-py.patch";
url = "https://github.com/tonioo/sievelib/commit/91f40ec226ea288e98379da01672a46dabd89fc9.patch";
sha256 = "0hph89xn16r353rg6f05bh0cgigmwdc736bya089qc03jhssrgns";
})
];

buildInputs = [ setuptools_scm ];