summary refs log tree commit diff
path: root/pkgs/development/python-modules/cement/default.nix
blob: 9b744957540f8338427464b1f8b98204a33a4c46 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ stdenv, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "cement";
  version = "2.10.12";

  src = fetchPypi {
    inherit pname version;
    sha256 = "58efb4eacd9ec977ce797a364a13851de6e42392bbde5287d44294f06c5a2f70";
  };

  # Disable test tests since they depend on a memcached server running on
  # 127.0.0.1:11211.
  doCheck = false;

  meta = with stdenv.lib; {
    homepage = http://builtoncement.com/;
    description = "A CLI Application Framework for Python.";
    maintainers = with maintainers; [ eqyiel ];
    license = licenses.bsd3;
  };
}