pants: remove
It has been broken for multiple releases.
This commit is contained in:
parent
743e8e57b7
commit
f6a82361ac
@ -1,41 +0,0 @@
|
||||
{ lib, pythonPackages }:
|
||||
|
||||
with lib;
|
||||
with pythonPackages;
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "pantsbuild.pants";
|
||||
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.22,>=2.5.0"
|
||||
'';
|
||||
|
||||
# Unnecessary, and causes some really weird behavior around .class files, which
|
||||
# this package bundles. See https://github.com/NixOS/nixpkgs/issues/22520.
|
||||
dontStrip = true;
|
||||
|
||||
propagatedBuildInputs = [
|
||||
twitter-common-collections setproctitle ansicolors packaging pathspec
|
||||
scandir twitter-common-dirutil psutil requests pystache pex docutils
|
||||
markdown pygments twitter-common-confluence fasteners pywatchman
|
||||
futures cffi subprocess32 contextlib2 faulthandler pyopenssl wheel
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "A build system for software projects in a variety of languages";
|
||||
homepage = "https://www.pantsbuild.org/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ copumpkin ];
|
||||
broken = true;
|
||||
};
|
||||
}
|
@ -15158,8 +15158,6 @@ with pkgs;
|
||||
|
||||
panopticon = callPackage ../development/tools/analysis/panopticon {};
|
||||
|
||||
pants = callPackage ../development/tools/build-managers/pants {};
|
||||
|
||||
parinfer-rust = callPackage ../development/tools/parinfer-rust {};
|
||||
|
||||
parse-cli-bin = callPackage ../development/tools/parse-cli-bin { };
|
||||
|
Loading…
Reference in New Issue
Block a user