mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
python36Packages.python_openzwave: init at 0.4.4
This commit is contained in:
parent
e0fc3b5fa1
commit
f1f3ece81e
2 changed files with 42 additions and 0 deletions
40
pkgs/development/python-modules/python_openzwave/default.nix
Normal file
40
pkgs/development/python-modules/python_openzwave/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue