leather: Init at 0.3.3

authored by Rahul Gopinath and committed by Franz Pletz ce8af120 e5ac6bc9

+24
+22
pkgs/development/python-modules/leather/default.nix
···
··· 1 + { stdenv, fetchPypi, buildPythonPackage, six }: 2 + 3 + buildPythonPackage rec { 4 + pname = "leather"; 5 + version = "0.3.3"; 6 + name = "${pname}-${version}"; 7 + 8 + src = fetchPypi { 9 + inherit pname version; 10 + sha256 = "125r372q7bwcajfdysp7w5zh5wccwxf1mkhqawl8h518nl1icv87"; 11 + }; 12 + 13 + propagatedBuildInputs = [ six ]; 14 + 15 + meta = with stdenv.lib; { 16 + homepage = "http://leather.rtfd.io"; 17 + description = "Python charting library"; 18 + license = licenses.mit; 19 + platforms = platforms.all; 20 + maintainers = with maintainers; [ vrthra ]; 21 + }; 22 + }
+2
pkgs/top-level/python-packages.nix
··· 5651 }; 5652 }; 5653 5654 libtmux = buildPythonPackage rec { 5655 name = "libtmux-${version}"; 5656 version = "0.6.0";
··· 5651 }; 5652 }; 5653 5654 + leather = callPackage ../development/python-modules/leather { }; 5655 + 5656 libtmux = buildPythonPackage rec { 5657 name = "libtmux-${version}"; 5658 version = "0.6.0";