linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / linode / default.nix
blob3433c0e5717cba8d7ec14260d50a4e400280c921
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , requests
5 }:
7 buildPythonPackage rec {
8   pname = "linode";
9   version = "0.4";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "db3c2a7fab8966d903a63f16c515bff241533e4ef2d746aa7aae4a49bba5e573";
14   };
16   propagatedBuildInputs = [ requests ];
18   meta = with lib; {
19     homepage = "https://github.com/ghickman/linode";
20     description = "A thin python wrapper around Linode's API";
21     license = licenses.mit;
22     maintainers = with maintainers; [ nslqqq ];
23   };