nixpkgs-suyu/pkgs/development/tools/build-managers/conan/default.nix

122 lines
3.5 KiB
Nix
Raw Normal View History

2021-04-07 01:30:48 +02:00
{ lib, stdenv, python3, fetchFromGitHub, git, pkg-config }:
2018-03-15 12:41:11 +01:00
# Note:
2020-05-06 18:15:07 +02:00
# Conan has specific dependency demands; check
# https://github.com/conan-io/conan/blob/master/conans/requirements.txt
# https://github.com/conan-io/conan/blob/master/conans/requirements_server.txt
# on the release branch/commit we're packaging.
#
# Two approaches are used here to deal with that:
# Pinning the specific versions it wants in `newPython`,
# and using `substituteInPlace conans/requirements.txt ...`
# in `postPatch` to allow newer versions when we know
# (e.g. from changelogs) that they are compatible.
2018-07-24 09:38:55 +02:00
let newPython = python3.override {
2018-03-15 12:41:11 +01:00
packageOverrides = self: super: {
node-semver = super.node-semver.overridePythonAttrs (oldAttrs: rec {
2019-01-09 14:29:56 +01:00
version = "0.6.1";
2018-03-15 12:41:11 +01:00
src = oldAttrs.src.override {
inherit version;
2019-01-09 14:29:56 +01:00
sha256 = "1dv6mjsm67l1razcgmq66riqmsb36wns17mnipqr610v0z0zf5j0";
2018-03-15 12:41:11 +01:00
};
});
2021-04-07 01:30:48 +02:00
urllib3 = super.urllib3.overridePythonAttrs (oldAttrs: rec {
version = "1.25.11";
src = oldAttrs.src.override {
inherit version;
2021-04-07 01:30:48 +02:00
sha256 = "18hpzh1am1dqx81fypn57r2wk565fi4g14292qrc5jm1h9dalzld";
};
});
# https://github.com/conan-io/conan/issues/8876
pyjwt = super.pyjwt.overridePythonAttrs (oldAttrs: rec {
version = "1.7.1";
src = oldAttrs.src.override {
inherit version;
sha256 = "8d59a976fb773f3e6a39c85636357c4f0e242707394cadadd9814f5cbaa20e96";
};
disabledTests = [
"test_ec_verify_should_return_false_if_signature_invalid"
];
});
# conan needs jinja2<3
jinja2 = super.jinja2.overridePythonAttrs (oldAttrs: rec {
version = "2.11.3";
src = oldAttrs.src.override {
inherit version;
sha256 = "a6d58433de0ae800347cab1fa3043cebbabe8baa9d29e668f1c768cb87a333c6";
};
});
# old jinja2 needs old markupsafe
markupsafe = super.markupsafe.overridePythonAttrs (oldAttrs: rec {
version = "1.1.1";
src = oldAttrs.src.override {
inherit version;
sha256 = "29872e92839765e546828bb7754a68c418d927cd064fd4708fab9fe9c8bb116b";
};
});
2018-03-15 12:41:11 +01:00
};
};
in newPython.pkgs.buildPythonApplication rec {
2021-04-07 01:30:48 +02:00
version = "1.35.0";
2017-04-13 01:40:33 +02:00
pname = "conan";
src = fetchFromGitHub {
owner = "conan-io";
repo = "conan";
rev = version;
2021-04-07 01:30:48 +02:00
sha256 = "19rgylkjxvv47vz5vgh46rw108xskpv7lmax8y2fnm2wd1j3bq9c";
2018-07-24 09:38:55 +02:00
};
propagatedBuildInputs = with newPython.pkgs; [
2020-03-22 15:45:49 +01:00
bottle
colorama
python-dateutil
2020-03-22 15:45:49 +01:00
deprecation
distro
fasteners
future
jinja2
2020-03-22 15:45:49 +01:00
node-semver
patch-ng
2020-03-22 15:45:49 +01:00
pluginbase
pygments
pyjwt
pylint # Not in `requirements.txt` but used in hooks, see https://github.com/conan-io/conan/pull/6152
2020-03-22 15:45:49 +01:00
pyyaml
requests
six
tqdm
urllib3
2021-02-27 05:20:00 +01:00
] ++ lib.optionals stdenv.isDarwin [ idna cryptography pyopenssl ];
2018-07-24 09:38:55 +02:00
checkInputs = [
pkg-config
2018-07-24 09:38:55 +02:00
git
] ++ (with newPython.pkgs; [
2019-01-09 14:29:56 +01:00
codecov
mock
2018-03-15 12:41:11 +01:00
nose
parameterized
webtest
2018-07-24 09:38:55 +02:00
]);
2018-03-15 12:41:11 +01:00
# TODO: reenable tests now that we fetch tests w/ the source from GitHub.
# Not enabled right now due to time constraints/failing tests that I didn't have time to track down
doCheck = false;
2017-04-13 01:40:33 +02:00
postPatch = ''
substituteInPlace conans/requirements.txt \
--replace "deprecation>=2.0, <2.1" "deprecation" \
--replace "six>=1.10.0,<=1.15.0" "six>=1.10.0,<=1.16.0"
'';
2017-11-13 20:08:07 +01:00
meta = with lib; {
homepage = "https://conan.io";
2017-04-13 01:40:33 +02:00
description = "Decentralized and portable C/C++ package manager";
license = licenses.mit;
2019-01-09 14:29:56 +01:00
maintainers = with maintainers; [ HaoZeke ];
2017-04-13 01:40:33 +02:00
};
}