Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pymitv / default.nix
blob98d3a88e97b9544dcb0e50365bca05a3581ac3e7
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , pythonOlder
5 , requests
6 }:
8 buildPythonPackage rec {
9   pname = "pymitv";
10   version = "1.5.0";
11   format = "setuptools";
12   disabled = pythonOlder "3.5";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-0n4IS5W3nvYwKdl6FVf4upRrFDGdYHohsaXadFy8d8w=";
17   };
19   propagatedBuildInputs = [ requests ];
21   # Projec thas no tests
22   doCheck = false;
23   pythonImportsCheck = [ "pymitv" ];
25   meta = with lib; {
26     description = "Python client the Mi Tv 3";
27     homepage = "https://github.com/simse/pymitv";
28     license = with licenses; [ mit ];
29     maintainers = with maintainers; [ fab ];
30   };