python3Packages.starline: init at 0.1.5
This commit is contained in:
parent
2db14a9cb5
commit
78df2079fc
36
pkgs/development/python-modules/starline/default.nix
Normal file
36
pkgs/development/python-modules/starline/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, fetchPypi
|
||||
, aiohttp
|
||||
, requests
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "starline";
|
||||
version = "0.1.5";
|
||||
|
||||
disabled = pythonOlder "3.5";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1753f5fcd2a6976aed775afb03f8392159f040c673917cc0c634510d95c13cb9";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
aiohttp
|
||||
requests
|
||||
];
|
||||
|
||||
# no tests implemented
|
||||
doCheck = false;
|
||||
|
||||
pythonImportsCheck = [ "starline" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Unofficial python library for StarLine API";
|
||||
homepage = "https://github.com/Anonym-tsk/starline";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ dotlambda ];
|
||||
};
|
||||
}
|
@ -8248,6 +8248,8 @@ in {
|
||||
|
||||
starkbank-ecdsa = callPackage ../development/python-modules/starkbank-ecdsa { };
|
||||
|
||||
starline = callPackage ../development/python-modules/starline { };
|
||||
|
||||
staticjinja = callPackage ../development/python-modules/staticjinja { };
|
||||
|
||||
statistics = callPackage ../development/python-modules/statistics { };
|
||||
|
Loading…
Reference in New Issue
Block a user