python3Packages.pynina: init at unstable-2021-11-11
This commit is contained in:
parent
293e6f0ce5
commit
bf8619a820
2 changed files with 41 additions and 0 deletions
39
pkgs/development/python-modules/pynina/default.nix
Normal file
39
pkgs/development/python-modules/pynina/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, aiohttp
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitLab
|
||||||
|
, pythonOlder
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pynina";
|
||||||
|
version = "unstable-2021-11-11";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "DeerMaximum";
|
||||||
|
repo = pname;
|
||||||
|
rev = "0ac42b28d48af7bcd9c83f5d425b5b23c4c19f02";
|
||||||
|
sha256 = "FSrFCs/4tfYcSPz9cgR+LFsRbWIHE1X+ZUl8BWSEaWQ=";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pynina"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python API wrapper to retrieve warnings from the german NINA app";
|
||||||
|
homepage = "https://gitlab.com/DeerMaximum/pynina";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6790,6 +6790,8 @@ in {
|
||||||
|
|
||||||
pynetdicom = callPackage ../development/python-modules/pynetdicom { };
|
pynetdicom = callPackage ../development/python-modules/pynetdicom { };
|
||||||
|
|
||||||
|
pynina = callPackage ../development/python-modules/pynina { };
|
||||||
|
|
||||||
pynisher = callPackage ../development/python-modules/pynisher { };
|
pynisher = callPackage ../development/python-modules/pynisher { };
|
||||||
|
|
||||||
pynmea2 = callPackage ../development/python-modules/pynmea2 { };
|
pynmea2 = callPackage ../development/python-modules/pynmea2 { };
|
||||||
|
|
Loading…
Reference in a new issue