Merge pull request #63207 from gnidorah/mididings
mididings: init at 20151117
This commit is contained in:
21
pkgs/development/python-modules/pysmf/default.nix
Normal file
21
pkgs/development/python-modules/pysmf/default.nix
Normal file
@@ -0,0 +1,21 @@
|
||||
{ stdenv, buildPythonPackage, fetchPypi, pkg-config, libsmf, glib, pytest }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pysmf";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "10i7vvvdx6c3gl4afsgnpdanwgzzag087zs0fxvfipnqknazj806";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config pytest ];
|
||||
buildInputs = [ libsmf glib ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = "http://das.nasophon.de/pysmf/";
|
||||
description = "Python extension module for reading and writing Standard MIDI Files, based on libsmf.";
|
||||
license = licenses.bsd2;
|
||||
maintainers = [ maintainers.gnidorah ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user