python312Packages.mypermobil: init at 0.1.8
This commit is contained in:
parent
716fcced47
commit
aa618d13bc
50
pkgs/development/python-modules/mypermobil/default.nix
Normal file
50
pkgs/development/python-modules/mypermobil/default.nix
Normal file
@ -0,0 +1,50 @@
|
|||||||
|
{
|
||||||
|
lib,
|
||||||
|
buildPythonPackage,
|
||||||
|
fetchFromGitHub,
|
||||||
|
setuptools,
|
||||||
|
aiocache,
|
||||||
|
aiohttp,
|
||||||
|
aiounittest,
|
||||||
|
pytestCheckHook,
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "mypermobil";
|
||||||
|
version = "0.1.8";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "Permobil-Software";
|
||||||
|
repo = "mypermobil";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-linnaRyA45EzqeSeNmvIE5gXkHA2F504U1++QBeRa90=";
|
||||||
|
};
|
||||||
|
|
||||||
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
aiocache
|
||||||
|
aiohttp
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "mypermobil" ];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
aiounittest
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
disabledTests = [
|
||||||
|
# requires networking
|
||||||
|
"test_region"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
changelog = "https://github.com/Permobil-Software/mypermobil/releases/tag/v${version}";
|
||||||
|
description = "Python wrapper for the MyPermobil API";
|
||||||
|
homepage = "https://github.com/Permobil-Software/mypermobil";
|
||||||
|
license = lib.licenses.mit;
|
||||||
|
maintainers = with lib.maintainers; [ dotlambda ];
|
||||||
|
};
|
||||||
|
}
|
@ -8128,6 +8128,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
myjwt = callPackage ../development/python-modules/myjwt { };
|
myjwt = callPackage ../development/python-modules/myjwt { };
|
||||||
|
|
||||||
|
mypermobil = callPackage ../development/python-modules/mypermobil { };
|
||||||
|
|
||||||
mypy = callPackage ../development/python-modules/mypy { };
|
mypy = callPackage ../development/python-modules/mypy { };
|
||||||
|
|
||||||
mypy-boto3-builder = callPackage ../development/python-modules/mypy-boto3-builder { };
|
mypy-boto3-builder = callPackage ../development/python-modules/mypy-boto3-builder { };
|
||||||
|
Loading…
Reference in New Issue
Block a user