nixpkgs/pkgs/development/python-modules/cement/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
670 B
Nix
Raw Normal View History

2021-12-20 07:28:13 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, pythonOlder
}:
buildPythonPackage rec {
pname = "cement";
version = "3.0.8";
2021-12-20 07:28:13 +00:00
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-rRGmlGZeKtKEV8VgSU9PjDaiX8WOUA1gip2R4E4dMJM=";
};
# Disable test tests since they depend on a memcached server running on
# 127.0.0.1:11211.
doCheck = false;
2021-12-20 07:28:13 +00:00
pythonImportsCheck = [
"cement"
];
meta = with lib; {
2021-12-20 07:28:13 +00:00
description = "CLI Application Framework for Python";
homepage = "https://builtoncement.com/";
license = licenses.bsd3;
2021-12-20 07:28:13 +00:00
maintainers = with maintainers; [ eqyiel ];
};
}