3
0
Fork 0
forked from mirrors/nixpkgs

leather: Init at 0.3.3

This commit is contained in:
Rahul Gopinath 2017-02-11 15:44:23 -08:00 committed by Franz Pletz
parent e5ac6bc999
commit ce8af120f2
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchPypi, buildPythonPackage, six }:
buildPythonPackage rec {
pname = "leather";
version = "0.3.3";
name = "${pname}-${version}";
src = fetchPypi {
inherit pname version;
sha256 = "125r372q7bwcajfdysp7w5zh5wccwxf1mkhqawl8h518nl1icv87";
};
propagatedBuildInputs = [ six ];
meta = with stdenv.lib; {
homepage = "http://leather.rtfd.io";
description = "Python charting library";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ vrthra ];
};
}

View file

@ -5651,6 +5651,8 @@ in {
};
};
leather = callPackage ../development/python-modules/leather { };
libtmux = buildPythonPackage rec {
name = "libtmux-${version}";
version = "0.6.0";