Merge pull request #63780 from MrMebelMan/foxdot
pythonPackage.foxdot: init at 0.8.1
This commit is contained in:
commit
a8122dc30e
23
pkgs/development/python-modules/foxdot/default.nix
Normal file
23
pkgs/development/python-modules/foxdot/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, buildPythonPackage, fetchPypi, tkinter, supercollider }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "FoxDot";
|
||||||
|
version = "0.8.1";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "147n2c9rwmrby8rr6xfxlh7mfm12lqk2a7v1gxlzhq1i2jj1j5h4";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ tkinter supercollider ];
|
||||||
|
|
||||||
|
# Requires a running SuperCollider instance
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Live coding music with SuperCollider";
|
||||||
|
homepage = https://foxdot.org/;
|
||||||
|
license = licenses.cc-by-sa-40;
|
||||||
|
maintainers = with maintainers; [ mrmebelman ];
|
||||||
|
};
|
||||||
|
}
|
@ -569,19 +569,21 @@ in {
|
|||||||
|
|
||||||
favicon = callPackage ../development/python-modules/favicon { };
|
favicon = callPackage ../development/python-modules/favicon { };
|
||||||
|
|
||||||
|
fdint = callPackage ../development/python-modules/fdint { };
|
||||||
|
|
||||||
fido2 = callPackage ../development/python-modules/fido2 { };
|
fido2 = callPackage ../development/python-modules/fido2 { };
|
||||||
|
|
||||||
filterpy = callPackage ../development/python-modules/filterpy { };
|
filterpy = callPackage ../development/python-modules/filterpy { };
|
||||||
|
|
||||||
|
filemagic = callPackage ../development/python-modules/filemagic { };
|
||||||
|
|
||||||
fints = callPackage ../development/python-modules/fints { };
|
fints = callPackage ../development/python-modules/fints { };
|
||||||
|
|
||||||
fire = callPackage ../development/python-modules/fire { };
|
fire = callPackage ../development/python-modules/fire { };
|
||||||
|
|
||||||
firetv = callPackage ../development/python-modules/firetv { };
|
firetv = callPackage ../development/python-modules/firetv { };
|
||||||
|
|
||||||
fdint = callPackage ../development/python-modules/fdint { };
|
foxdot = callPackage ../development/python-modules/foxdot { };
|
||||||
|
|
||||||
filemagic = callPackage ../development/python-modules/filemagic { };
|
|
||||||
|
|
||||||
fsspec = callPackage ../development/python-modules/fsspec { };
|
fsspec = callPackage ../development/python-modules/fsspec { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user