nixpkgs/pkgs/development/python-modules/leather/default.nix
2021-01-25 18:31:47 +01:00

22 lines
493 B
Nix

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