nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildPythonPackage,
4 fetchFromGitHub,
5 requests,
6}:
7
8buildPythonPackage rec {
9 pname = "bravia-tv";
10 version = "1.0.11";
11 format = "setuptools";
12
13 src = fetchFromGitHub {
14 owner = "dcnielsen90";
15 repo = "python-bravia-tv";
16 rev = "v${version}";
17 hash = "sha256-g47bDd5bZl0jad3o6T1jJLcnZj8nx944kz3Vxv8gD2U=";
18 };
19
20 propagatedBuildInputs = [ requests ];
21
22 # Package does not include tests
23 doCheck = false;
24
25 pythonImportsCheck = [ "bravia_tv" ];
26
27 meta = {
28 homepage = "https://github.com/dcnielsen90/python-bravia-tv";
29 description = "Python library for Sony Bravia TV remote control";
30 license = lib.licenses.mit;
31 maintainers = [ ];
32 };
33}