nixpkgs/pkgs/development/python-modules/foxdot/default.nix
2020-07-03 12:04:37 -07:00

24 lines
597 B
Nix

{ stdenv, buildPythonPackage, fetchPypi, tkinter, supercollider }:
buildPythonPackage rec {
pname = "FoxDot";
version = "0.8.11";
src = fetchPypi {
inherit pname version;
sha256 = "00yqpkv7cxwk301cyiwjzr9yfq8hpnhqyspw3z874ydrl3cmssdb";
};
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 ];
};
}