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

29 lines
776 B
Nix
Raw Normal View History

2017-04-13 00:40:33 +01:00
{ 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;
};
}