pythonPackages.python-pipedrive: init at 0.4.0

This commit is contained in:
Vladyslav Burzakovskyy 2019-09-02 15:19:07 +02:00
parent 0ce70efd43
commit 0a7905ce74
2 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,27 @@
{ 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 ];
};
}

View File

@ -4574,6 +4574,8 @@ in {
python-markdown-math = callPackage ../development/python-modules/python-markdown-math { };
python-pipedrive = callPackage ../development/python-modules/python-pipedrive { };
python-ptrace = callPackage ../development/python-modules/python-ptrace { };
python-wifi = callPackage ../development/python-modules/python-wifi { };