Files
nixpkgs/pkgs/development/python-modules/linode/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

27 lines
518 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
requests,
}:
buildPythonPackage rec {
pname = "linode";
version = "0.4";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "db3c2a7fab8966d903a63f16c515bff241533e4ef2d746aa7aae4a49bba5e573";
};
propagatedBuildInputs = [ requests ];
meta = with lib; {
homepage = "https://github.com/ghickman/linode";
description = "Thin python wrapper around Linode's API";
license = licenses.mit;
maintainers = [ ];
};
}