biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pynina / default.nix
blob9f95a1064550ff919fcba1b85e1ec5184196e9ae
2   lib,
3   aiohttp,
4   buildPythonPackage,
5   fetchPypi,
6   pythonOlder,
7 }:
9 buildPythonPackage rec {
10   pname = "pynina";
11   version = "0.3.3";
12   format = "setuptools";
14   disabled = pythonOlder "3.7";
16   src = fetchPypi {
17     pname = "PyNINA";
18     inherit version;
19     hash = "sha256-6HJ78tKl6If/ezwOrGl3VEYO4eMh/6cZq2j2AMBr0I8=";
20   };
22   propagatedBuildInputs = [ aiohttp ];
24   # Project has no tests
25   doCheck = false;
27   pythonImportsCheck = [ "pynina" ];
29   meta = with lib; {
30     description = "Python API wrapper to retrieve warnings from the german NINA app";
31     homepage = "https://gitlab.com/DeerMaximum/pynina";
32     changelog = "https://gitlab.com/DeerMaximum/pynina/-/releases/${version}";
33     license = licenses.mit;
34     maintainers = with maintainers; [ fab ];
35   };