python3Packages.aenum: 3.1.2 -> 3.1.3
This commit is contained in:
parent
2de888a972
commit
40fd9ee736
1 changed files with 9 additions and 6 deletions
|
@ -8,11 +8,12 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "aenum";
|
pname = "aenum";
|
||||||
version = "3.1.2";
|
version = "3.1.3";
|
||||||
|
format = "setuptools";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "806dd4791298e19daff2cdfe7be3ae6d931d0d03097973f802b3ea55066f62dd";
|
sha256 = "sha256-HUlOTTs+PpU4mu5CAgPZRXdtJDDumj1PFi4mezp+w6Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
|
@ -28,12 +29,14 @@ buildPythonPackage rec {
|
||||||
runHook postCheck
|
runHook postCheck
|
||||||
'';
|
'';
|
||||||
|
|
||||||
pythonImportsCheck = [ "aenum" ];
|
pythonImportsCheck = [
|
||||||
|
"aenum"
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Advanced Enumerations (compatible with Python's stdlib Enum), NamedTuples, and NamedConstants";
|
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";
|
homepage = "https://github.com/ethanfurman/aenum";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ vrthra ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue