Merge pull request #67946 from MrMebelMan/init/python-pipedrive
pythonPackages.python-pipedrive: init at 0.4.0
This commit is contained in:
commit
254e2ec209
27
pkgs/development/python-modules/python-pipedrive/default.nix
Normal file
27
pkgs/development/python-modules/python-pipedrive/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4574,6 +4574,8 @@ in {
|
|||||||
|
|
||||||
python-markdown-math = callPackage ../development/python-modules/python-markdown-math { };
|
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-ptrace = callPackage ../development/python-modules/python-ptrace { };
|
||||||
|
|
||||||
python-wifi = callPackage ../development/python-modules/python-wifi { };
|
python-wifi = callPackage ../development/python-modules/python-wifi { };
|
||||||
|
Loading…
Reference in New Issue
Block a user