1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-15 17:25:11 +00:00
nixpkgs/pkgs/development/tools/build-managers/conan/default.nix

105 lines
2.8 KiB
Nix
Raw Normal View History

{ lib, python3, git, pkgconfig }:
2018-03-15 11:41:11 +00:00
# Note:
2020-05-06 17:15:07 +01: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 08:38:55 +01:00
let newPython = python3.override {
2018-03-15 11:41:11 +00:00
packageOverrides = self: super: {
distro = super.distro.overridePythonAttrs (oldAttrs: rec {
2019-01-16 12:23:10 +00:00
version = "1.1.0";
2018-03-15 11:41:11 +00:00
src = oldAttrs.src.override {
inherit version;
sha256 = "1vn1db2akw98ybnpns92qi11v94hydwp130s8753k6ikby95883j";
};
});
node-semver = super.node-semver.overridePythonAttrs (oldAttrs: rec {
2019-01-09 13:29:56 +00:00
version = "0.6.1";
2018-03-15 11:41:11 +00:00
src = oldAttrs.src.override {
inherit version;
2019-01-09 13:29:56 +00:00
sha256 = "1dv6mjsm67l1razcgmq66riqmsb36wns17mnipqr610v0z0zf5j0";
2018-03-15 11:41:11 +00:00
};
});
pluginbase = super.pluginbase.overridePythonAttrs (oldAttrs: rec {
version = "0.7";
src = oldAttrs.src.override {
inherit version;
sha256 = "c0abe3218b86533cca287e7057a37481883c07acef7814b70583406938214cc8";
};
});
2018-03-15 11:41:11 +00:00
};
};
in newPython.pkgs.buildPythonApplication rec {
2020-05-06 17:15:07 +01:00
version = "1.25.0";
2017-04-13 00:40:33 +01:00
pname = "conan";
2018-03-15 11:41:11 +00:00
src = newPython.pkgs.fetchPypi {
2017-04-13 00:40:33 +01:00
inherit pname version;
2020-05-06 17:15:07 +01:00
sha256 = "1wgmx6s4h5m6zixb3wlaicy56rsqcy2srzmvii80xdx9g5wvi9pv";
2018-07-24 08:38:55 +01:00
};
propagatedBuildInputs = with newPython.pkgs; [
2020-03-22 14:45:49 +00:00
bottle
colorama
dateutil
2020-03-22 14:45:49 +00:00
deprecation
distro
fasteners
future
jinja2
2020-03-22 14:45:49 +00:00
node-semver
patch-ng
2020-03-22 14:45:49 +00: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 14:45:49 +00:00
pyyaml
requests
six
tqdm
urllib3
];
2018-07-24 08:38:55 +01:00
checkInputs = [
pkgconfig
2018-07-24 08:38:55 +01:00
git
] ++ (with newPython.pkgs; [
2019-01-09 13:29:56 +00:00
codecov
mock
pytest
2019-01-09 13:29:56 +00:00
node-semver
2018-03-15 11:41:11 +00:00
nose
parameterized
webtest
2018-07-24 08:38:55 +01:00
]);
2018-03-15 11:41:11 +00:00
# Conan 1.14.0 has removed all tests from the Pypi source dist:
# https://github.com/conan-io/conan/pull/4713
# We have recommended they be added back:
# https://github.com/conan-io/conan/issues/4563#issuecomment-602225083
doCheck = false;
2017-04-13 00:40:33 +01:00
postPatch = ''
substituteInPlace conans/requirements.txt \
2020-05-06 17:14:13 +01:00
--replace "PyYAML>=3.11, <3.14.0" "PyYAML" \
--replace "deprecation>=2.0, <2.1" "deprecation"
'';
2017-11-13 19:08:07 +00:00
meta = with lib; {
homepage = "https://conan.io";
2017-04-13 00:40:33 +01:00
description = "Decentralized and portable C/C++ package manager";
license = licenses.mit;
2019-01-09 13:29:56 +00:00
maintainers = with maintainers; [ HaoZeke ];
2017-04-13 00:40:33 +01:00
platforms = platforms.linux;
};
}