python3Packages.ritassist: init at 0.9.3
This commit is contained in:
parent
293e6f0ce5
commit
fafe74f157
2 changed files with 45 additions and 0 deletions
43
pkgs/development/python-modules/ritassist/default.nix
Normal file
43
pkgs/development/python-modules/ritassist/default.nix
Normal file
|
@ -0,0 +1,43 @@
|
|||
{ lib
|
||||
, buildPythonPackage
|
||||
, ciso8601
|
||||
, fetchPypi
|
||||
, geopy
|
||||
, pythonOlder
|
||||
, requests
|
||||
, sseclient
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "ritassist";
|
||||
version = "0.9.3";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.8";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1JCKWb+3mdQYnL250Ml+kFkx6VAlBC7FL6XcQlQ+kC4=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
ciso8601
|
||||
geopy
|
||||
requests
|
||||
sseclient
|
||||
];
|
||||
|
||||
# Project has no tests
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [
|
||||
"ritassist"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python client to access RitAssist and FleetGO API";
|
||||
homepage = "https://github.com/depl0y/ritassist-py";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -8204,6 +8204,8 @@ in {
|
|||
|
||||
rising = callPackage ../development/python-modules/rising { };
|
||||
|
||||
ritassist = callPackage ../development/python-modules/ritassist { };
|
||||
|
||||
rivet = toPythonModule (pkgs.rivet.override {
|
||||
python3 = python;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue