Merge pull request #112981 from fabaff/surepy
This commit is contained in:
commit
f3f77c4630
61
pkgs/development/python-modules/surepy/default.nix
Normal file
61
pkgs/development/python-modules/surepy/default.nix
Normal file
@ -0,0 +1,61 @@
|
||||
{ lib
|
||||
, aiodns
|
||||
, aiohttp
|
||||
, async-timeout
|
||||
, brotlipy
|
||||
, buildPythonPackage
|
||||
, cchardet
|
||||
, click
|
||||
, colorama
|
||||
, fetchFromGitHub
|
||||
, halo
|
||||
, poetry-core
|
||||
, pythonOlder
|
||||
, requests
|
||||
, rich
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "surepy";
|
||||
version = "0.5.0";
|
||||
format = "pyproject";
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "benleb";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1adsnjya142bxdhfxqsi2qa35ylvdcibigs1wafjlxazlxs3mg0j";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ poetry-core ];
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiodns
|
||||
aiohttp
|
||||
async-timeout
|
||||
brotlipy
|
||||
cchardet
|
||||
click
|
||||
colorama
|
||||
halo
|
||||
requests
|
||||
rich
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
# halo is out-dated, https://github.com/benleb/surepy/pull/7
|
||||
substituteInPlace pyproject.toml --replace "^0.0.30" "^0.0.31"
|
||||
'';
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
pythonImportsCheck = [ "surepy" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library to interact with the Sure Petcare API";
|
||||
homepage = "https://github.com/benleb/surepy";
|
||||
license = with licenses; [ mit ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
@ -796,7 +796,7 @@
|
||||
"sun" = ps: with ps; [ ];
|
||||
"supervisord" = ps: with ps; [ ];
|
||||
"supla" = ps: with ps; [ ]; # missing inputs: asyncpysupla
|
||||
"surepetcare" = ps: with ps; [ ]; # missing inputs: surepy
|
||||
"surepetcare" = ps: with ps; [ surepy ];
|
||||
"swiss_hydrological_data" = ps: with ps; [ swisshydrodata ];
|
||||
"swiss_public_transport" = ps: with ps; [ python-opendata-transport ];
|
||||
"swisscom" = ps: with ps; [ ];
|
||||
|
@ -7573,6 +7573,8 @@ in {
|
||||
|
||||
sure = callPackage ../development/python-modules/sure { };
|
||||
|
||||
surepy = callPackage ../development/python-modules/surepy { };
|
||||
|
||||
survey = callPackage ../development/python-modules/survey { };
|
||||
|
||||
suseapi = callPackage ../development/python-modules/suseapi { };
|
||||
|
Loading…
Reference in New Issue
Block a user