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

Commits on Mar 4, 2019

  1. pants: mark as broken

    (cherry picked from commit 9dc262c)
    Not much point in even fixing the build since it doesn't work [0]
    
    ZHF: #56826
    [0]: #53206 (comment)
    FRidh authored and worldofpeace committed Mar 4, 2019

    Unverified

    This user has not yet uploaded their public signing key.
    Copy the full SHA
    f45e8b3 View commit details
Showing with 7 additions and 7 deletions.
  1. +7 −7 pkgs/development/tools/build-managers/pants/default.nix
14 changes: 7 additions & 7 deletions pkgs/development/tools/build-managers/pants/default.nix
Original file line number Diff line number Diff line change
@@ -3,21 +3,21 @@
with stdenv.lib;
with pythonPackages;

let
version = "1.7.0";
in buildPythonApplication rec {
inherit version;
buildPythonApplication rec {
pname = "pantsbuild.pants";
name = "${pname}-${version}";
version = "1.7.0";

src = fetchPypi {
inherit pname version;
sha256 = "1d7ff1383287c8e72f2c9855cfef982d362274a64e2707a93c070f988ba80a37";
};

# No tests
doCheck = false;

prePatch = ''
sed -E -i "s/'([[:alnum:].-]+)[=><][[:digit:]=><.,]*'/'\\1'/g" setup.py
substituteInPlace setup.py --replace "requests[security]<2.19,>=2.5.0" "requests[security]<2.20,>=2.5.0"
substituteInPlace setup.py --replace "requests[security]<2.19,>=2.5.0" "requests[security]<2.22,>=2.5.0"
'';

# Unnecessary, and causes some really weird behavior around .class files, which
@@ -36,6 +36,6 @@ in buildPythonApplication rec {
homepage = "https://www.pantsbuild.org/";
license = licenses.asl20;
maintainers = with maintainers; [ copumpkin ];
platforms = platforms.unix;
broken = true;
};
}