nixpkgs/pkgs/development/python-modules/foxdot/default.nix

24 lines
606 B
Nix
Raw Normal View History

2019-06-25 19:18:05 +00:00
{ stdenv, buildPythonPackage, fetchPypi, tkinter, supercollider }:
buildPythonPackage rec {
pname = "FoxDot";
2019-12-10 18:07:39 +00:00
version = "0.8.4";
2019-06-25 19:18:05 +00:00
src = fetchPypi {
inherit pname version;
2019-12-10 18:07:39 +00:00
sha256 = "8b6d810f5389692c45d236dec89cecc4ff32ad053e4c878c91363acfa4508639";
2019-06-25 19:18:05 +00:00
};
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 ];
};
}