From 40fd9ee73677d60a7cf0abefc665fc2ac10a5d2b Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 9 Nov 2021 08:44:57 +0100 Subject: [PATCH] python3Packages.aenum: 3.1.2 -> 3.1.3 --- pkgs/development/python-modules/aenum/default.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/aenum/default.nix b/pkgs/development/python-modules/aenum/default.nix index 64725e04d504..457a6007f8af 100644 --- a/pkgs/development/python-modules/aenum/default.nix +++ b/pkgs/development/python-modules/aenum/default.nix @@ -8,16 +8,17 @@ buildPythonPackage rec { pname = "aenum"; - version = "3.1.2"; + version = "3.1.3"; + format = "setuptools"; src = fetchPypi { inherit pname version; - sha256 = "806dd4791298e19daff2cdfe7be3ae6d931d0d03097973f802b3ea55066f62dd"; + sha256 = "sha256-HUlOTTs+PpU4mu5CAgPZRXdtJDDumj1PFi4mezp+w6Y="; }; checkInputs = [ pyparsing - ] ; + ]; # py2 likes to reorder tests doCheck = isPy3k; @@ -28,12 +29,14 @@ buildPythonPackage rec { runHook postCheck ''; - pythonImportsCheck = [ "aenum" ]; + pythonImportsCheck = [ + "aenum" + ]; meta = with lib; { description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants"; - maintainers = with maintainers; [ vrthra ]; - license = licenses.bsd3; homepage = "https://github.com/ethanfurman/aenum"; + license = licenses.bsd3; + maintainers = with maintainers; [ vrthra ]; }; }