blob: a3a131c8b8af854931fea520d9bdbf91e226f36d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{
lib,
buildPythonPackage,
fetchPypi,
pythonOlder,
}:
buildPythonPackage rec {
pname = "cement";
version = "3.0.10";
format = "setuptools";
disabled = pythonOlder "3.5";
src = fetchPypi {
inherit pname version;
hash = "sha256-c9EBXr+bjfE+a8mH7fDUvj8ci0Q4kh7qjWbLtVBK7hU=";
};
# Disable test tests since they depend on a memcached server running on
# 127.0.0.1:11211.
doCheck = false;
pythonImportsCheck = [ "cement" ];
meta = with lib; {
description = "CLI Application Framework for Python";
mainProgram = "cement";
homepage = "https://builtoncement.com/";
license = licenses.bsd3;
maintainers = with maintainers; [ eqyiel ];
};
}
|