mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #266630 from fabaff/pytrydan
python311Packages.pytrydan: init at 0.4.0
This commit is contained in:
commit
b484139f60
66
pkgs/development/python-modules/pytrydan/default.nix
Normal file
66
pkgs/development/python-modules/pytrydan/default.nix
Normal file
@ -0,0 +1,66 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchFromGitHub
|
||||||
|
, httpx
|
||||||
|
, orjson
|
||||||
|
, poetry-core
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytestCheckHook
|
||||||
|
, pythonOlder
|
||||||
|
, respx
|
||||||
|
, rich
|
||||||
|
, syrupy
|
||||||
|
, tenacity
|
||||||
|
, typer
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pytrydan";
|
||||||
|
version = "0.4.0";
|
||||||
|
pyproject = true;
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.10";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "dgomes";
|
||||||
|
repo = "pytrydan";
|
||||||
|
rev = "refs/tags/v${version}";
|
||||||
|
hash = "sha256-9PyRICtZ+0Ezinu28oFgFOSnOyCmD7zZbdc/chN+sCo=";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace pyproject.toml \
|
||||||
|
--replace " --cov=pytrydan --cov-report=term-missing:skip-covered" ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
poetry-core
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
httpx
|
||||||
|
orjson
|
||||||
|
rich
|
||||||
|
tenacity
|
||||||
|
typer
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeCheckInputs = [
|
||||||
|
pytest-asyncio
|
||||||
|
pytestCheckHook
|
||||||
|
respx
|
||||||
|
syrupy
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [
|
||||||
|
"pytrydan"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Library to interface with V2C EVSE Trydan";
|
||||||
|
homepage = "https://github.com/dgomes/pytrydan";
|
||||||
|
changelog = "https://github.com/dgomes/pytrydan/blob/${version}/CHANGELOG.md";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -11695,6 +11695,8 @@ self: super: with self; {
|
|||||||
|
|
||||||
pytricia = callPackage ../development/python-modules/pytricia { };
|
pytricia = callPackage ../development/python-modules/pytricia { };
|
||||||
|
|
||||||
|
pytrydan = callPackage ../development/python-modules/pytrydan { };
|
||||||
|
|
||||||
pyttsx3 = callPackage ../development/python-modules/pyttsx3 { };
|
pyttsx3 = callPackage ../development/python-modules/pyttsx3 { };
|
||||||
|
|
||||||
pytube = callPackage ../development/python-modules/pytube { };
|
pytube = callPackage ../development/python-modules/pytube { };
|
||||||
|
Loading…
Reference in New Issue
Block a user