Merge pull request #136551 from fabaff/bump-lupa

python3Packages.lupa: 1.9 -> 1.10, python3Packages.fakeredis: 1.5.2 -> 1.6.0
This commit is contained in:
Fabian Affolter 2021-09-04 18:35:04 +02:00 committed by GitHub
commit 2131476fdb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 9 additions and 4 deletions

View file

@ -16,12 +16,12 @@
buildPythonPackage rec {
pname = "fakeredis";
version = "1.5.2";
version = "1.6.0";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "18fc1808d2ce72169d3f11acdb524a00ef96bd29970c6d34cfeb2edb3fc0c020";
sha256 = "sha256-Ecz8l2nXGNN+RbOC5kproCWGtiKvoDcaa9hXZtciVfM=";
};
propagatedBuildInputs = [
@ -40,6 +40,11 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTestPaths = [
# Missing support for later pytest-asyncio, https://github.com/jamesls/fakeredis/issues/307
"test/test_aioredis1.py"
];
pythonImportsCheck = [ "fakeredis" ];
meta = with lib; {

View file

@ -6,11 +6,11 @@
buildPythonPackage rec {
pname = "lupa";
version = "1.9";
version = "1.10";
src = fetchPypi {
inherit pname version;
sha256 = "13ifv0nxbf70xg69sp49j484m8cnid7rgh8f94pgfb50dj01vqd3";
sha256 = "sha256-4lEbJ/OB9v22bvQNzFGCFQOBl0MbJBk1Z438PVEXgjE=";
};
nativeBuildInputs = [ cython ];