2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, isPy3k }:
|
2017-09-01 12:39:45 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "cement";
|
2019-05-30 07:49:49 +01:00
|
|
|
version = "3.0.4";
|
2017-09-01 12:39:45 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-05-30 07:49:49 +01:00
|
|
|
sha256 = "10a8459dc9fc31d6c038ede24a9081c5c3bd5fcd75b071e01baf281f81c9eace";
|
2017-09-01 12:39:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
# Disable test tests since they depend on a memcached server running on
|
|
|
|
# 127.0.0.1:11211.
|
|
|
|
doCheck = false;
|
|
|
|
|
2018-08-30 17:17:25 +01:00
|
|
|
disabled = !isPy3k;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://builtoncement.com/";
|
2017-09-01 12:39:45 +01:00
|
|
|
description = "A CLI Application Framework for Python.";
|
|
|
|
maintainers = with maintainers; [ eqyiel ];
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|