Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / python-pipedrive / default.nix
bloba3c37ab5a5daad3493d1bc001696eba3d285e486
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , httplib2
5 }:
7 buildPythonPackage rec {
8   pname = "python-pipedrive";
9   version = "0.4.0";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "0f8qiyl82bpwxwjw2746vdvkps2010mvn1x9b6j6ppmifff2d4pl";
15   };
17   propagatedBuildInputs = [ httplib2 ];
19   doCheck = false; # Tests are not provided.
21   meta = with 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   };