Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

python37Packages.foxdot: init at 0.8.1

+28 -3
+23
pkgs/development/python-modules/foxdot/default.nix
··· 1 + { stdenv, buildPythonPackage, fetchPypi, tkinter, supercollider }: 2 + 3 + buildPythonPackage rec { 4 + pname = "FoxDot"; 5 + version = "0.8.1"; 6 + 7 + src = fetchPypi { 8 + inherit pname version; 9 + sha256 = "147n2c9rwmrby8rr6xfxlh7mfm12lqk2a7v1gxlzhq1i2jj1j5h4"; 10 + }; 11 + 12 + propagatedBuildInputs = [ tkinter supercollider ]; 13 + 14 + # Requires a running SuperCollider instance 15 + doCheck = false; 16 + 17 + meta = with stdenv.lib; { 18 + description = "Live coding music with SuperCollider"; 19 + homepage = https://foxdot.org/; 20 + license = licenses.cc-by-sa-40; 21 + maintainers = with maintainers; [ mrmebelman ]; 22 + }; 23 + }
+5 -3
pkgs/top-level/python-packages.nix
··· 569 569 570 570 favicon = callPackage ../development/python-modules/favicon { }; 571 571 572 + fdint = callPackage ../development/python-modules/fdint { }; 573 + 572 574 fido2 = callPackage ../development/python-modules/fido2 { }; 573 575 574 576 filterpy = callPackage ../development/python-modules/filterpy { }; 577 + 578 + filemagic = callPackage ../development/python-modules/filemagic { }; 575 579 576 580 fints = callPackage ../development/python-modules/fints { }; 577 581 ··· 579 583 580 584 firetv = callPackage ../development/python-modules/firetv { }; 581 585 582 - fdint = callPackage ../development/python-modules/fdint { }; 583 - 584 - filemagic = callPackage ../development/python-modules/filemagic { }; 586 + foxdot = callPackage ../development/python-modules/foxdot { }; 585 587 586 588 fsspec = callPackage ../development/python-modules/fsspec { }; 587 589