nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at python-updates 36 lines 739 B view raw
1{ 2 lib, 3 buildPythonPackage, 4 fetchPypi, 5 drawille, 6 matplotlib, 7}: 8 9buildPythonPackage rec { 10 pname = "drawilleplot"; 11 version = "0.1.0"; 12 13 format = "setuptools"; 14 15 src = fetchPypi { 16 inherit pname version; 17 hash = "sha256-ZEDroo7KkI2VxdESb2QDX+dPY4UahuuK9L0EddrxJjQ="; 18 }; 19 20 doCheck = false; # does not have any tests at all 21 22 propagatedBuildInputs = [ 23 drawille 24 matplotlib 25 ]; 26 27 pythonImportsCheck = [ "drawilleplot" ]; 28 29 meta = { 30 description = "Matplotlib backend for graph output in unicode terminals using drawille"; 31 homepage = "https://github.com/gooofy/drawilleplot"; 32 license = lib.licenses.asl20; 33 maintainers = with lib.maintainers; [ nobbz ]; 34 platforms = lib.platforms.all; 35 }; 36}