Merge pull request #128911 from fabaff/bump-regenmaschin

python3Packages.regenmaschine: 3.1.2 -> 3.1.3
This commit is contained in:
Sandro 2021-07-06 02:36:55 +02:00 committed by GitHub
commit a48f920a9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,33 +7,37 @@
, poetry-core , poetry-core
, pytest-aiohttp , pytest-aiohttp
, pytest-asyncio , pytest-asyncio
, pytest-cov
, pytest-mock , pytest-mock
, pytestCheckHook , pytestCheckHook
, pythonOlder
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "regenmaschine"; pname = "regenmaschine";
version = "3.1.2"; version = "3.1.3";
format = "pyproject"; format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "bachya"; owner = "bachya";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-lARti3Sb/jh7h8x+lFLqkM/BlL6XmELm46owsL041Cw="; sha256 = "sha256-3Q0JQQVspzuQQAn3S46uFbOYW2zQ7c1UL4zjEOnifDY=";
}; };
nativeBuildInputs = [ poetry-core ]; nativeBuildInputs = [
poetry-core
];
propagatedBuildInputs = [ aiohttp ]; propagatedBuildInputs = [
aiohttp
];
checkInputs = [ checkInputs = [
aresponses aresponses
asynctest asynctest
pytest-aiohttp pytest-aiohttp
pytest-asyncio pytest-asyncio
pytest-cov
pytest-mock pytest-mock
pytestCheckHook pytestCheckHook
]; ];