Files
nixpkgs/pkgs/development/python-modules/python-pipedrive/default.nix
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

29 lines
624 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
httplib2,
}:
buildPythonPackage rec {
pname = "python-pipedrive";
version = "0.4.0";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0f8qiyl82bpwxwjw2746vdvkps2010mvn1x9b6j6ppmifff2d4pl";
};
propagatedBuildInputs = [ httplib2 ];
doCheck = false; # Tests are not provided.
meta = {
description = "Python library for interacting with the pipedrive.com API";
homepage = "https://github.com/jscott1989/python-pipedrive";
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [ mrmebelman ];
};
}