ansible-later: 2.0.22 -> 2.0.23
[NixPkgs.git] / pkgs / development / python-modules / pylutron / default.nix
blob4bf56d5e6edc580742037cb365b80c17fb4aec4e
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 }:
6 buildPythonPackage rec {
7   pname = "pylutron";
8   version = "0.2.9";
10   src = fetchPypi {
11     inherit pname version;
12     sha256 = "sha256-xy5XPNOrvdPZMCfa2MYA+xtUcFdGSurW5QYL6H7n2VI=";
13   };
15   # Project has no tests
16   doCheck = false;
17   pythonImportsCheck = [ "pylutron" ];
19   meta = with lib; {
20     description = "Python library for controlling a Lutron RadioRA 2 system";
21     homepage = "https://github.com/thecynic/pylutron";
22     license = with licenses; [ mit ];
23     maintainers = with maintainers; [ fab ];
24   };