Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / orvibo / default.nix
blob0b08b3d1a0c1cb59c35376960b54adaaea4ac715
1 { lib
2 , buildPythonPackage
3 , fetchFromGitHub
4 }:
6 buildPythonPackage rec {
7   pname = "orvibo";
8   version = "1.1.2";
9   format = "setuptools";
11   src = fetchFromGitHub {
12     owner = "happyleavesaoc";
13     repo = "python-orvibo";
14     rev = version;
15     sha256 = "sha256-Azmho47CEbRo18emmLKhYa/sViQX0oxUTUk4zdrpOaE=";
16   };
18   # Project as no tests
19   doCheck = false;
20   pythonImportsCheck = [ "orvibo" ];
22   meta = with lib; {
23     description = "Python client to work with Orvibo devices";
24     homepage = "https://github.com/happyleavesaoc/python-orvibo";
25     license = with licenses; [ mit ];
26     maintainers = with maintainers; [ fab ];
27   };