Merge branch 'master' into staging
Thousands of rebuilds from master :-/
This commit is contained in:
21
pkgs/development/python-modules/blessed/default.nix
Normal file
21
pkgs/development/python-modules/blessed/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, six, wcwidth }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "blessed";
|
||||
version = "1.14.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0fv9f0074kxy1849h0kwwxw12sifpq3bv63pcz900zzjsigi4hi3";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ wcwidth six ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://github.com/jquast/blessed;
|
||||
description = "A thin, practical wrapper around terminal capabilities in Python.";
|
||||
maintainers = with maintainers; [ eqyiel ];
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
23
pkgs/development/python-modules/cement/default.nix
Normal file
23
pkgs/development/python-modules/cement/default.nix
Normal file
@@ -0,0 +1,23 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cement";
|
||||
name = "${pname}-${version}";
|
||||
version = "2.8.2";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1li2whjzfhbpg6fjb6r1r92fb3967p1xv6hqs3j787865h2ysrc7";
|
||||
};
|
||||
|
||||
# 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user