depot/third_party/nixpkgs/pkgs/development/python-modules/pyipp/default.nix
Default email 0eaa97ffad Project import generated by Copybara.
GitOrigin-RevId: c59ea8b8a0e7f927e7291c14ea6cd1bd3a16ff38
2020-08-20 19:08:02 +02:00

40 lines
826 B
Nix

{ lib, buildPythonPackage, fetchFromGitHub, isPy27
, aiohttp, deepmerge, yarl
, aresponses, pytest, pytest-asyncio, pytestcov }:
buildPythonPackage rec {
pname = "pyipp";
version = "0.10.1";
disabled = isPy27;
src = fetchFromGitHub {
owner = "ctalkington";
repo = "python-ipp";
rev = version;
sha256 = "0y9mkrx66f4m77jzfgdgmvlqismvimb6hm61j2va7zapm8dyabvr";
};
propagatedBuildInputs = [
aiohttp
deepmerge
yarl
];
checkInputs = [
aresponses
pytest
pytest-asyncio
pytestcov
];
checkPhase = ''
pytest -q .
'';
meta = with lib; {
description = "Asynchronous Python client for Internet Printing Protocol (IPP)";
homepage = "https://github.com/ctalkington/python-ipp";
license = licenses.mit;
maintainers = with maintainers; [ hexa ];
};
}