Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{
2 lib,
3 fetchFromGitHub,
4 python3Packages,
5}:
6
7python3Packages.buildPythonPackage rec {
8 pname = "nengo-gui";
9 version = "0.4.9";
10 format = "setuptools";
11
12 src = fetchFromGitHub {
13 owner = "nengo";
14 repo = "nengo-gui";
15 tag = "v${version}";
16 sha256 = "sha256-aBi4roe9pqPmpbW5zrbDoIvyH5mTKgIzL2O5j1+VBMY=";
17 };
18
19 propagatedBuildInputs = with python3Packages; [ nengo ];
20
21 # checks req missing:
22 # pyimgur
23 doCheck = false;
24
25 meta = with lib; {
26 description = "Nengo interactive visualizer";
27 homepage = "https://nengo.ai/";
28 license = licenses.unfreeRedistributable;
29 maintainers = with maintainers; [ ];
30 };
31}