persist-queue: 0.8.0 -> 0.8.1

This update adds support for cbor2, which is now a test dependency.
This commit is contained in:
huantian 2023-06-07 16:48:57 -07:00
parent b9e05544c9
commit dceec61589
No known key found for this signature in database
GPG key ID: 4A0318E04E555DE5

View file

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