mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
pythonPackages.python-pipedrive: init at 0.4.0
This commit is contained in:
parent
0ce70efd43
commit
0a7905ce74
2 changed files with 29 additions and 0 deletions
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-pipedrive = callPackage ../development/python-modules/python-pipedrive { };
|
||||
|
||||
python-ptrace = callPackage ../development/python-modules/python-ptrace { };
|
||||
|
||||
python-wifi = callPackage ../development/python-modules/python-wifi { };
|
||||
|
|
Loading…
Reference in a new issue