leather: Init at 0.3.3
This commit is contained in:
parent
e5ac6bc999
commit
ce8af120f2
22
pkgs/development/python-modules/leather/default.nix
Normal file
22
pkgs/development/python-modules/leather/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -5651,6 +5651,8 @@ in {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
leather = callPackage ../development/python-modules/leather { };
|
||||||
|
|
||||||
libtmux = buildPythonPackage rec {
|
libtmux = buildPythonPackage rec {
|
||||||
name = "libtmux-${version}";
|
name = "libtmux-${version}";
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
|
Loading…
Reference in New Issue
Block a user