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

25 lines
606 B
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchPypi, isPy3k }:
buildPythonPackage rec {
pname = "cement";
2018-08-25 05:43:18 +00:00
version = "3.0.0";
src = fetchPypi {
inherit pname version;
2018-08-25 05:43:18 +00:00
sha256 = "e50e1033d61d18b36787a60d52cad0d3fe20780e7e2f78f0204bde32000645f9";
};
# Disable test tests since they depend on a memcached server running on
# 127.0.0.1:11211.
doCheck = false;
disabled = !isPy3k;
meta = with stdenv.lib; {
homepage = http://builtoncement.com/;
description = "A CLI Application Framework for Python.";
maintainers = with maintainers; [ eqyiel ];
license = licenses.bsd3;
};
}