Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / drawilleplot / default.nix
blob1ed452c1d1090201dbd52e60ea0d35b2d3f9bfc3
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , drawille
5 , matplotlib
6 }:
8 buildPythonPackage rec {
9   pname = "drawilleplot";
10   version = "0.1.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-ZEDroo7KkI2VxdESb2QDX+dPY4UahuuK9L0EddrxJjQ=";
17   };
19   doCheck = false; # does not have any tests at all
21   propagatedBuildInputs = [
22     drawille
23     matplotlib
24   ];
26   pythonImportsCheck = [
27     "drawilleplot"
28   ];
30   meta = with lib; {
31     description = "matplotlib backend for graph output in unicode terminals using drawille";
32     homepage = "https://github.com/gooofy/drawilleplot";
33     license = licenses.asl20;
34     maintainers = with maintainers; [ nobbz ];
35     platforms = platforms.all;
36   };