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