biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / python-pipedrive / default.nix
blob9f541ba8005c01621537159a505f3356c3a8afb4
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   httplib2,
6 }:
8 buildPythonPackage rec {
9   pname = "python-pipedrive";
10   version = "0.4.0";
11   format = "setuptools";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "0f8qiyl82bpwxwjw2746vdvkps2010mvn1x9b6j6ppmifff2d4pl";
16   };
18   propagatedBuildInputs = [ httplib2 ];
20   doCheck = false; # Tests are not provided.
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   };