0828e2d8c3
Want to get this out of here for 18.09, so it can be deprecated thereafter.
22 lines
563 B
Nix
22 lines
563 B
Nix
{ stdenv, lib, fetchPypi, buildPythonPackage }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pyserial";
|
|
version="3.4";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "09y68bczw324a4jb9a1cfwrbjhq179vnfkkkrybbksp0vqgl0bbf";
|
|
};
|
|
|
|
checkPhase = "python -m unittest discover -s test";
|
|
doCheck = !stdenv.hostPlatform.isDarwin; # broken on darwin
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/pyserial/pyserial";
|
|
license = licenses.psfl;
|
|
description = "Python serial port extension";
|
|
maintainers = with maintainers; [ makefu ];
|
|
};
|
|
}
|