1{ lib
2, buildPythonPackage
3, fetchPypi
4, httplib2
5}:
6
7buildPythonPackage rec {
8 pname = "python-pipedrive";
9 version = "0.4.0";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "0f8qiyl82bpwxwjw2746vdvkps2010mvn1x9b6j6ppmifff2d4pl";
14 };
15
16 propagatedBuildInputs = [ httplib2 ];
17
18 doCheck = false; # Tests are not provided.
19
20 meta = with lib; {
21 description = "Python library for interacting with the pipedrive.com API";
22 homepage = "https://github.com/jscott1989/python-pipedrive";
23 license = licenses.unfree;
24 maintainers = with maintainers; [ mrmebelman ];
25 };
26}