blob: 9f541ba8005c01621537159a505f3356c3a8afb4 (
plain)
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
|
{
lib,
buildPythonPackage,
fetchPypi,
httplib2,
}:
buildPythonPackage rec {
pname = "python-pipedrive";
version = "0.4.0";
format = "setuptools";
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 ];
};
}
|