mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-25 21:44:49 +00:00
python3Packages.volvooncall: init at 0.9.2
This commit is contained in:
parent
3e78470617
commit
3a6d134b23
57
pkgs/development/python-modules/volvooncall/default.nix
Normal file
57
pkgs/development/python-modules/volvooncall/default.nix
Normal file
@ -0,0 +1,57 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchFromGitHub
|
||||
, setuptools
|
||||
, geopy
|
||||
, docopt
|
||||
, pyyaml
|
||||
, certifi
|
||||
, amqtt
|
||||
, websockets
|
||||
, aiohttp
|
||||
, pytestCheckHook
|
||||
, asynctest
|
||||
, pytest-asyncio
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "volvooncall";
|
||||
version = "0.9.2";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
format = "setuptools";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "molobrakos";
|
||||
repo = "volvooncall";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-OTs282z7qzILl/xxM3whaxiQr8FZOfgceO2EY3NJKbA=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
geopy
|
||||
docopt
|
||||
pyyaml
|
||||
certifi
|
||||
amqtt
|
||||
websockets
|
||||
aiohttp
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
pytestCheckHook
|
||||
asynctest
|
||||
pytest-asyncio
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "volvooncall" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Retrieve information from the Volvo On Call web service";
|
||||
homepage = "https://github.com/molobrakos/volvooncall";
|
||||
license = licenses.unlicense;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -10433,6 +10433,8 @@ in {
|
||||
|
||||
voluptuous-serialize = callPackage ../development/python-modules/voluptuous-serialize { };
|
||||
|
||||
volvooncall = callPackage ../development/python-modules/volvooncall { };
|
||||
|
||||
vowpalwabbit = callPackage ../development/python-modules/vowpalwabbit { };
|
||||
|
||||
vpk = callPackage ../development/python-modules/vpk { };
|
||||
|
Loading…
Reference in New Issue
Block a user