python3Packages.shortuuid: 1.0.9 -> 1.0.11

This commit is contained in:
Martin Weinelt
2022-12-30 20:13:47 +01:00
parent 6426df7cc2
commit 809587a8eb

View File

@@ -7,14 +7,14 @@
buildPythonPackage rec {
pname = "shortuuid";
version = "1.0.9";
version = "1.0.11";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-RZ8S+hrMNP8hOxNxRnwDJRaWRaMe2YniaIcjOa91Y9U=";
hash = "sha256-/HXyYVkUgVqOTLFQGzpRN0XLZu8P1fxvufjD+jSB94k=";
};
checkInputs = [
@@ -25,10 +25,6 @@ buildPythonPackage rec {
"shortuuid"
];
pytestFlagsArray = [
"shortuuid/tests.py"
];
meta = with lib; {
description = "Library to generate concise, unambiguous and URL-safe UUIDs";
homepage = "https://github.com/stochastic-technologies/shortuuid/";