Merge pull request #151341 from r-ryantm/auto-update/python3.8-cement

python38Packages.cement: 3.0.4 -> 3.0.6
This commit is contained in:
Fabian Affolter
2021-12-20 09:37:40 +01:00
committed by GitHub
@@ -1,24 +1,33 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "cement";
version = "3.0.4";
version = "3.0.6";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "10a8459dc9fc31d6c038ede24a9081c5c3bd5fcd75b071e01baf281f81c9eace";
sha256 = "fccec41eab3f15a03445b1ce24c8a7e106d4d5520f6507a7145698ce68923d31";
};
# Disable test tests since they depend on a memcached server running on
# 127.0.0.1:11211.
doCheck = false;
disabled = !isPy3k;
pythonImportsCheck = [
"cement"
];
meta = with lib; {
description = "CLI Application Framework for Python";
homepage = "https://builtoncement.com/";
description = "A CLI Application Framework for Python.";
maintainers = with maintainers; [ eqyiel ];
license = licenses.bsd3;
maintainers = with maintainers; [ eqyiel ];
};
}