Merge pull request #67946 from MrMebelMan/init/python-pipedrive

pythonPackages.python-pipedrive: init at 0.4.0
This commit is contained in:
Marek Mahut 2019-09-03 11:02:14 +02:00 committed by GitHub
commit 254e2ec209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 { };