mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
python37Packages.foxdot: init at 0.8.1
This commit is contained in:
parent
3d91781151
commit
32905843ab
2 changed files with 28 additions and 3 deletions
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 { };
|
||||
|
||||
fdint = callPackage ../development/python-modules/fdint { };
|
||||
|
||||
fido2 = callPackage ../development/python-modules/fido2 { };
|
||||
|
||||
filterpy = callPackage ../development/python-modules/filterpy { };
|
||||
|
||||
filemagic = callPackage ../development/python-modules/filemagic { };
|
||||
|
||||
fints = callPackage ../development/python-modules/fints { };
|
||||
|
||||
fire = callPackage ../development/python-modules/fire { };
|
||||
|
||||
firetv = callPackage ../development/python-modules/firetv { };
|
||||
|
||||
fdint = callPackage ../development/python-modules/fdint { };
|
||||
|
||||
filemagic = callPackage ../development/python-modules/filemagic { };
|
||||
foxdot = callPackage ../development/python-modules/foxdot { };
|
||||
|
||||
fsspec = callPackage ../development/python-modules/fsspec { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue