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