Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / linode / default.nix
blob7f4d9b0dbd838b33035a7cda66feb16594279e75
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "linode";
9   version = "0.4";
10   format = "setuptools";
12   src = fetchPypi {
13     inherit pname version;
14     sha256 = "db3c2a7fab8966d903a63f16c515bff241533e4ef2d746aa7aae4a49bba5e573";
15   };
17   propagatedBuildInputs = [ requests ];
19   meta = with lib; {
20     homepage = "https://github.com/ghickman/linode";
21     description = "A thin python wrapper around Linode's API";
22     license = licenses.mit;
23     maintainers = with maintainers; [ ];
24   };