nixpkgs/pkgs/development/python-modules/foxdot/default.nix
R. RyanTM 2d272e93c8 python37Packages.foxdot: 0.8.1 -> 0.8.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/python3.7-foxdot/versions
2019-10-07 10:52:50 -07:00

24 lines
594 B
Nix

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