conan: init at 0.21.2
This commit is contained in:
parent
fe2ced1ea8
commit
8d5e55a0f0
28
pkgs/development/tools/build-managers/conan/default.nix
Normal file
28
pkgs/development/tools/build-managers/conan/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ stdenv, pythonPackages }:
|
||||||
|
|
||||||
|
pythonPackages.buildPythonApplication rec {
|
||||||
|
name = "${pname}-${version}";
|
||||||
|
version = "0.21.2";
|
||||||
|
pname = "conan";
|
||||||
|
|
||||||
|
src = pythonPackages.fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "0x9s5h81d885xdrjw5x99q18lhmj11kalrs6xnjy2phrr8qzil8c";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with pythonPackages; [
|
||||||
|
requests2 fasteners pyyaml pyjwt colorama patch
|
||||||
|
bottle pluginbase six distro pylint node-semver
|
||||||
|
];
|
||||||
|
|
||||||
|
# enable tests once all of these pythonPackages available:
|
||||||
|
# [ nose nose_parameterized mock WebTest codecov ]
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = https://conan.io;
|
||||||
|
description = "Decentralized and portable C/C++ package manager";
|
||||||
|
license = licenses.mit;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -6407,6 +6407,8 @@ with pkgs;
|
|||||||
|
|
||||||
complexity = callPackage ../development/tools/misc/complexity { };
|
complexity = callPackage ../development/tools/misc/complexity { };
|
||||||
|
|
||||||
|
conan = callPackage ../development/tools/build-managers/conan { };
|
||||||
|
|
||||||
cookiecutter = pythonPackages.cookiecutter;
|
cookiecutter = pythonPackages.cookiecutter;
|
||||||
|
|
||||||
ctags = callPackage ../development/tools/misc/ctags { };
|
ctags = callPackage ../development/tools/misc/ctags { };
|
||||||
|
Loading…
Reference in New Issue
Block a user