summary refs log tree commit diff
path: root/pkgs/development/tools/build-managers/conan/default.nix
blob: 69cc2db3ff2801b8607c8367636ec78cb48f13d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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; [
    requests 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;
  };
}