pythonPackages.pyliblo: refactor move to python-modules
This commit is contained in:
parent
3c19bb493f
commit
74daf007a4
26
pkgs/development/python-modules/pyliblo/default.nix
Normal file
26
pkgs/development/python-modules/pyliblo/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchurl
|
||||||
|
, isPyPy
|
||||||
|
, pkgs
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyliblo";
|
||||||
|
version = "0.9.2";
|
||||||
|
disabled = isPyPy;
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://das.nasophon.de/download/${pname}-${version}.tar.gz";
|
||||||
|
sha256 = "382ee7360aa00aeebf1b955eef65f8491366657a626254574c647521b36e0eb0";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ pkgs.liblo ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = http://das.nasophon.de/pyliblo/;
|
||||||
|
description = "Python wrapper for the liblo OSC library";
|
||||||
|
license = licenses.lgpl21;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -3455,25 +3455,7 @@ in {
|
|||||||
|
|
||||||
pylibgen = callPackage ../development/python-modules/pylibgen { };
|
pylibgen = callPackage ../development/python-modules/pylibgen { };
|
||||||
|
|
||||||
pyliblo = buildPythonPackage rec {
|
pyliblo = callPackage ../development/python-modules/pyliblo { };
|
||||||
name = "pyliblo-${version}";
|
|
||||||
version = "0.9.2";
|
|
||||||
|
|
||||||
disabled = isPyPy;
|
|
||||||
|
|
||||||
src = pkgs.fetchurl {
|
|
||||||
url = "http://das.nasophon.de/download/${name}.tar.gz";
|
|
||||||
sha256 = "382ee7360aa00aeebf1b955eef65f8491366657a626254574c647521b36e0eb0";
|
|
||||||
};
|
|
||||||
|
|
||||||
propagatedBuildInputs = with self ; [ pkgs.liblo ];
|
|
||||||
|
|
||||||
meta = {
|
|
||||||
homepage = http://das.nasophon.de/pyliblo/;
|
|
||||||
description = "Python wrapper for the liblo OSC library";
|
|
||||||
license = licenses.lgpl21;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
pypcap = callPackage ../development/python-modules/pypcap {};
|
pypcap = callPackage ../development/python-modules/pypcap {};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user