863f11c18d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/conan/versions. These checks were done: - built on NixOS - Warning: no invocation of /nix/store/pdza6q7n1rywgra2022zvbi05fj47kjy-conan-1.4.4/bin/.conan_server-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/pdza6q7n1rywgra2022zvbi05fj47kjy-conan-1.4.4/bin/conan_server had a zero exit code or showed the expected version - /nix/store/pdza6q7n1rywgra2022zvbi05fj47kjy-conan-1.4.4/bin/.conan_build_info-wrapped passed the binary check. - /nix/store/pdza6q7n1rywgra2022zvbi05fj47kjy-conan-1.4.4/bin/conan_build_info passed the binary check. - Warning: no invocation of /nix/store/pdza6q7n1rywgra2022zvbi05fj47kjy-conan-1.4.4/bin/.conan-wrapped had a zero exit code or showed the expected version - Warning: no invocation of /nix/store/pdza6q7n1rywgra2022zvbi05fj47kjy-conan-1.4.4/bin/conan had a zero exit code or showed the expected version - 2 of 6 passed binary check by having a zero exit code. - 0 of 6 passed binary check by having the new version present in output. - found 1.4.4 with grep in /nix/store/pdza6q7n1rywgra2022zvbi05fj47kjy-conan-1.4.4 - directory tree listing: https://gist.github.com/0da299922c958da51520fdd195a2d369 - du listing: https://gist.github.com/7e5d6a9b06f35b233151c026f6dd089b
56 lines
1.4 KiB
Nix
56 lines
1.4 KiB
Nix
{ lib, fetchpatch, python }:
|
|
|
|
let newPython = python.override {
|
|
packageOverrides = self: super: {
|
|
distro = super.distro.overridePythonAttrs (oldAttrs: rec {
|
|
version = "1.1.0";
|
|
src = oldAttrs.src.override {
|
|
inherit version;
|
|
sha256 = "1vn1db2akw98ybnpns92qi11v94hydwp130s8753k6ikby95883j";
|
|
};
|
|
});
|
|
node-semver = super.node-semver.overridePythonAttrs (oldAttrs: rec {
|
|
version = "0.2.0";
|
|
src = oldAttrs.src.override {
|
|
inherit version;
|
|
sha256 = "1080pdxrvnkr8i7b7bk0dfx6cwrkkzzfaranl7207q6rdybzqay3";
|
|
};
|
|
});
|
|
};
|
|
};
|
|
|
|
in newPython.pkgs.buildPythonApplication rec {
|
|
version = "1.4.4";
|
|
pname = "conan";
|
|
|
|
src = newPython.pkgs.fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1g03f8rw9l198w9ph0gi0q3g84ilp1dxxc9nmj0dgnymcfgpf89n";
|
|
};
|
|
|
|
checkInputs = with newPython.pkgs; [
|
|
nose
|
|
parameterized
|
|
mock
|
|
webtest
|
|
codecov
|
|
];
|
|
|
|
propagatedBuildInputs = with newPython.pkgs; [
|
|
requests fasteners pyyaml pyjwt colorama patch
|
|
bottle pluginbase six distro pylint node-semver
|
|
future pygments mccabe deprecation
|
|
];
|
|
|
|
preCheck = ''
|
|
export HOME="$TMP/conan-home"
|
|
mkdir -p "$HOME"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = https://conan.io;
|
|
description = "Decentralized and portable C/C++ package manager";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|