mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-21 19:44:09 +00:00
python3Packages.pyipp: init at 0.10.1
Also regenerate home-assistant component packages.
This commit is contained in:
parent
25ac3f0f08
commit
1930604312
40
pkgs/development/python-modules/pyipp/default.nix
Normal file
40
pkgs/development/python-modules/pyipp/default.nix
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
{ 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -386,7 +386,7 @@
|
|||||||
"iota" = ps: with ps; [ ]; # missing inputs: pyota
|
"iota" = ps: with ps; [ ]; # missing inputs: pyota
|
||||||
"iperf3" = ps: with ps; [ ]; # missing inputs: iperf3
|
"iperf3" = ps: with ps; [ ]; # missing inputs: iperf3
|
||||||
"ipma" = ps: with ps; [ ]; # missing inputs: pyipma
|
"ipma" = ps: with ps; [ ]; # missing inputs: pyipma
|
||||||
"ipp" = ps: with ps; [ ]; # missing inputs: pyipp
|
"ipp" = ps: with ps; [ pyipp];
|
||||||
"iqvia" = ps: with ps; [ numpy]; # missing inputs: pyiqvia
|
"iqvia" = ps: with ps; [ numpy]; # missing inputs: pyiqvia
|
||||||
"irish_rail_transport" = ps: with ps; [ ]; # missing inputs: pyirishrail
|
"irish_rail_transport" = ps: with ps; [ ]; # missing inputs: pyirishrail
|
||||||
"islamic_prayer_times" = ps: with ps; [ ]; # missing inputs: prayer_times_calculator
|
"islamic_prayer_times" = ps: with ps; [ ]; # missing inputs: prayer_times_calculator
|
||||||
|
@ -5543,6 +5543,8 @@ in {
|
|||||||
|
|
||||||
pyinotify = callPackage ../development/python-modules/pyinotify { };
|
pyinotify = callPackage ../development/python-modules/pyinotify { };
|
||||||
|
|
||||||
|
pyipp = callPackage ../development/python-modules/pyipp { };
|
||||||
|
|
||||||
pyjwt = callPackage ../development/python-modules/pyjwt { };
|
pyjwt = callPackage ../development/python-modules/pyjwt { };
|
||||||
|
|
||||||
pykickstart = callPackage ../development/python-modules/pykickstart { };
|
pykickstart = callPackage ../development/python-modules/pykickstart { };
|
||||||
|
Loading…
Reference in New Issue
Block a user