superfile: 1.1.6 -> 1.1.7 (#371308)
[NixPkgs.git] / pkgs / development / python-modules / drawilleplot / default.nix
blobb1efda4769455a3b898817cb8bea48bb6e0bab64
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   drawille,
6   matplotlib,
7 }:
9 buildPythonPackage rec {
10   pname = "drawilleplot";
11   version = "0.1.0";
13   format = "setuptools";
15   src = fetchPypi {
16     inherit pname version;
17     hash = "sha256-ZEDroo7KkI2VxdESb2QDX+dPY4UahuuK9L0EddrxJjQ=";
18   };
20   doCheck = false; # does not have any tests at all
22   propagatedBuildInputs = [
23     drawille
24     matplotlib
25   ];
27   pythonImportsCheck = [ "drawilleplot" ];
29   meta = with lib; {
30     description = "matplotlib backend for graph output in unicode terminals using drawille";
31     homepage = "https://github.com/gooofy/drawilleplot";
32     license = licenses.asl20;
33     maintainers = with maintainers; [ nobbz ];
34     platforms = platforms.all;
35   };