mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
28 lines
614 B
Nix
28 lines
614 B
Nix
{ stdenv
|
|
, buildPythonPackage
|
|
, fetchPypi
|
|
, python
|
|
, httplib2
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-pipedrive";
|
|
version = "0.4.0";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "0f8qiyl82bpwxwjw2746vdvkps2010mvn1x9b6j6ppmifff2d4pl";
|
|
};
|
|
|
|
propagatedBuildInputs = [ httplib2 ];
|
|
|
|
doCheck = false; # Tests are not provided.
|
|
|
|
meta = with stdenv.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 ];
|
|
};
|
|
}
|