python312Packages.lightning-utilities: 0.11.9 -> 0.12.0 (#378243)
[NixPkgs.git] / pkgs / development / python-modules / pymitv / default.nix
bloba5f14cbfebfc85090ec307c9788e48d572724d97
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pythonOlder,
6   requests,
7 }:
9 buildPythonPackage rec {
10   pname = "pymitv";
11   version = "1.5.0";
12   format = "setuptools";
13   disabled = pythonOlder "3.5";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-0n4IS5W3nvYwKdl6FVf4upRrFDGdYHohsaXadFy8d8w=";
18   };
20   propagatedBuildInputs = [ requests ];
22   # Projec thas no tests
23   doCheck = false;
24   pythonImportsCheck = [ "pymitv" ];
26   meta = with lib; {
27     description = "Python client the Mi Tv 3";
28     homepage = "https://github.com/simse/pymitv";
29     license = with licenses; [ mit ];
30     maintainers = with maintainers; [ fab ];
31   };