python3Packages.cement: clean-up

main
Fabian Affolter 3 years ago committed by GitHub
parent 90ec72f719
commit 1bc097e7d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      pkgs/development/python-modules/cement/default.nix

@ -1,8 +1,15 @@
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "cement";
version = "3.0.6";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
@ -13,12 +20,14 @@ buildPythonPackage rec {
# 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 ];
};
}

Loading…
Cancel
Save