Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 lib, 3 python3Packages, 4 fetchFromGitHub, 5}: 6 7python3Packages.buildPythonApplication { 8 pname = "bashplotlib"; 9 version = "2021-03-31"; 10 format = "pyproject"; 11 12 src = fetchFromGitHub { 13 owner = "glamp"; 14 repo = "bashplotlib"; 15 rev = "db4065cfe65c0bf7c530e0e8b9328daf9593ad74"; 16 sha256 = "sha256-0S6mgy6k7CcqsDR1kE5xcXGidF1t061e+M+ZuP2Gk3c="; 17 }; 18 19 build-system = with python3Packages; [ 20 setuptools 21 ]; 22 23 # No tests 24 doCheck = false; 25 26 meta = with lib; { 27 homepage = "https://github.com/glamp/bashplotlib"; 28 description = "Plotting in the terminal"; 29 maintainers = with maintainers; [ dtzWill ]; 30 license = licenses.mit; 31 }; 32}