python3Packages.pypck: 0.7.10 -> 0.7.11

This commit is contained in:
Fabian Affolter 2021-07-25 20:58:09 +02:00
parent 2f9cf506dd
commit 508a22f51c

View file

@ -2,7 +2,6 @@
, buildPythonPackage , buildPythonPackage
, fetchFromGitHub , fetchFromGitHub
, pytest-asyncio , pytest-asyncio
, pytest-cov
, pytest-timeout , pytest-timeout
, pytestCheckHook , pytestCheckHook
, pythonOlder , pythonOlder
@ -11,19 +10,18 @@
buildPythonPackage rec { buildPythonPackage rec {
pname = "pypck"; pname = "pypck";
version = "0.7.10"; version = "0.7.11";
disabled = pythonOlder "3.8"; disabled = pythonOlder "3.8";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "alengwenus"; owner = "alengwenus";
repo = pname; repo = pname;
rev = version; rev = version;
sha256 = "sha256-B2imewEONewj1Y+Q316reIBZB/b9WQAu67x9cLMkRTU="; sha256 = "1jj0y487qcxrprx4x2rs6r7rqsf5m9khk0xhigbvnbyvh8rsd2jr";
}; };
checkInputs = [ checkInputs = [
pytest-asyncio pytest-asyncio
pytest-cov
pytest-timeout pytest-timeout
pytestCheckHook pytestCheckHook
]; ];