pythonPackages.pysmf: init at 0.1.1
This commit is contained in:
parent
189c4de9bf
commit
8679773d63
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 ];
|
||||
};
|
||||
}
|
@ -807,6 +807,8 @@ in {
|
||||
slurm = pkgs.slurm;
|
||||
};
|
||||
|
||||
pysmf = callPackage ../development/python-modules/pysmf { };
|
||||
|
||||
pyspinel = callPackage ../development/python-modules/pyspinel {};
|
||||
|
||||
pyssim = callPackage ../development/python-modules/pyssim { };
|
||||
|
Loading…
Reference in New Issue
Block a user