python36Packages.python_openzwave: init at 0.4.4

This commit is contained in:
Elis Hirwing 2018-04-07 23:33:10 +02:00
parent e0fc3b5fa1
commit f1f3ece81e
No known key found for this signature in database
GPG key ID: D57EFA625C9A925F
2 changed files with 42 additions and 0 deletions

View file

@ -0,0 +1,40 @@
{ stdenv, buildPythonPackage, fetchPypi, isPy3k
, pkgconfig
, systemd, libyaml, openzwave, cython
, six, pydispatcher, urwid }:
buildPythonPackage rec {
pname = "python_openzwave";
version = "0.4.4";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "17wdgwg212agj1gxb2kih4cvhjb5bprir4x446s8qwx0mz03azk2";
extension = "zip";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ systemd libyaml openzwave cython ];
propagatedBuildInputs = [ six urwid pydispatcher ];
# primary location for the .xml files is in /etc/openzwave so we override the
# /usr/local/etc lookup instead as that allows us to dump new .xml files into
# /etc/openzwave if needed
postPatch = ''
substituteInPlace src-lib/libopenzwave/libopenzwave.pyx \
--replace /usr/local/etc/openzwave ${openzwave}/etc/openzwave
'';
# no tests available
doCheck = false;
meta = with stdenv.lib; {
description = "Python wrapper for the OpenZWave C++ library";
homepage = https://github.com/OpenZWave/python-openzwave;
license = licenses.gpl3Plus;
maintainers = with maintainers; [ etu ];
inherit (openzwave.meta) platforms;
};
}

View file

@ -8935,6 +8935,8 @@ in {
python-oauth2 = callPackage ../development/python-modules/python-oauth2 { };
python_openzwave = callPackage ../development/python-modules/python_openzwave { };
python-Levenshtein = buildPythonPackage rec {
name = "python-Levenshtein-${version}";
version = "0.12.0";