Merge pull request #236551 from huantianad/persist-queue-0.8.1

persist-queue: 0.8.0 -> 0.8.1
This commit is contained in:
Felix Bühler 2023-06-24 17:10:12 +02:00 committed by GitHub
commit 3c9a272a96
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2,24 +2,26 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pythonOlder , pythonOlder
, msgpack
, nose2 , nose2
, msgpack
, cbor2
}: }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "persist-queue"; pname = "persist-queue";
version = "0.8.0"; version = "0.8.1";
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "sha256-vapNz8SyCpzh9cttoxFrbLj+N1J9mR/SQoVu8szNIY4="; sha256 = "sha256-4ZONOsbZthaSwRX43crajZox8iUGeCWF45WIpB7Ppao=";
}; };
disabled = pythonOlder "3.6"; disabled = pythonOlder "3.6";
nativeCheckInputs = [ nativeCheckInputs = [
msgpack
nose2 nose2
msgpack
cbor2
]; ];
checkPhase = '' checkPhase = ''