nixpkgs/pkgs/development/python-modules/pyspinel/default.nix
Sirio Balmelli 669de6d21d python3Packages.pyspinel: fix build
Adopt upstream patch accepted here:
https://github.com/openthread/pyspinel/pull/98

Signed-off-by: Sirio Balmelli <sirio@b-ad.ch>
Co-Authored-By: Jon <jonringer@users.noreply.github.com>
2020-07-09 10:58:12 -07:00

33 lines
791 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, isPy27
, future, pyserial, ipaddress
}:
buildPythonPackage rec {
pname = "pyspinel";
version = "unstable-2020-06-19"; # no versioned release since 2018
disabled = isPy27;
src = fetchFromGitHub {
owner = "openthread";
repo = pname;
rev = "e0bb3f8e6f49b593ab248a75de04a71626ae8101";
sha256 = "0nfmdkgbhmkl82dfxjpwiiarxngm6a3fvdrzpaqp60a4b17pipqg";
};
propagatedBuildInputs = [
future
ipaddress
pyserial
];
doCheck = false;
pythonImportsCheck = [ "spinel" ];
meta = with lib; {
description = "Interface to the OpenThread Network Co-Processor (NCP)";
homepage = "https://github.com/openthread/pyspinel";
license = licenses.asl20;
maintainers = with maintainers; [ gebner ];
};
}