about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/python-pipedrive/default.nix
blob: a8d96043d8d70300b4e39fa22ceb7c1d6c7dfaa3 (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
{ lib
, buildPythonPackage
, fetchPypi
, httplib2
}:

buildPythonPackage rec {
  pname = "python-pipedrive";
  version = "0.4.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "0f8qiyl82bpwxwjw2746vdvkps2010mvn1x9b6j6ppmifff2d4pl";
  };

  propagatedBuildInputs = [ httplib2 ];

  doCheck = false; # Tests are not provided.

  meta = with lib; {
    description = "Python library for interacting with the pipedrive.com API";
    homepage = "https://github.com/jscott1989/python-pipedrive";
    license = licenses.unfree;
    maintainers = with maintainers; [ mrmebelman ];
  };
}