python3Packages.aioridwell: init at 0.2.0
This commit is contained in:
parent
1b58f82701
commit
a1156ceb97
2 changed files with 75 additions and 0 deletions
73
pkgs/development/python-modules/aioridwell/default.nix
Normal file
73
pkgs/development/python-modules/aioridwell/default.nix
Normal file
|
@ -0,0 +1,73 @@
|
|||
{ lib
|
||||
, aiohttp
|
||||
, aresponses
|
||||
, buildPythonPackage
|
||||
, fetchFromGitHub
|
||||
, freezegun
|
||||
, poetry-core
|
||||
, pyjwt
|
||||
, pytest-aiohttp
|
||||
, pytest-asyncio
|
||||
, pytestCheckHook
|
||||
, pythonOlder
|
||||
, pytz
|
||||
, titlecase
|
||||
, types-pytz
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "aioridwell";
|
||||
version = "0.2.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bachya";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "0kzxh1igncql1rwh12n42qahlc94z0fsd344d1vgni50jg7i34v7";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
poetry-core
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
pyjwt
|
||||
pytz
|
||||
titlecase
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
aresponses
|
||||
freezegun
|
||||
pytest-aiohttp
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
types-pytz
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace 'titlecase = "^2.3"' 'titlecase = "*"' \
|
||||
--replace 'pytz = "^2021.3"' 'pytz = "*"'
|
||||
'';
|
||||
|
||||
disabledTestPaths = [
|
||||
# Ignore the examples directory as the files are prefixed with test_
|
||||
"examples/"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"aioridwell"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for interacting with Ridwell waste recycling";
|
||||
homepage = "https://github.com/bachya/aioridwell";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -365,6 +365,8 @@ in {
|
|||
|
||||
aioresponses = callPackage ../development/python-modules/aioresponses { };
|
||||
|
||||
aioridwell = callPackage ../development/python-modules/aioridwell { };
|
||||
|
||||
aiorpcx = callPackage ../development/python-modules/aiorpcx { };
|
||||
|
||||
aiorun = callPackage ../development/python-modules/aiorun { };
|
||||
|
|
Loading…
Reference in a new issue