python3Packages.twentemilieu: init at 0.3.0
This commit is contained in:
parent
b1efbc6aa3
commit
1ef773418c
43
pkgs/development/python-modules/twentemilieu/default.nix
Normal file
43
pkgs/development/python-modules/twentemilieu/default.nix
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, pythonOlder
|
||||||
|
, fetchFromGitHub
|
||||||
|
, aiohttp
|
||||||
|
, yarl
|
||||||
|
, aresponses
|
||||||
|
, pytest-asyncio
|
||||||
|
, pytestCheckHook
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "twentemilieu";
|
||||||
|
version = "0.3.0";
|
||||||
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "frenck";
|
||||||
|
repo = "python-twentemilieu";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1ff35sh73m2s7fh4d8p2pjwdbfljswr8b8lpcjybz8nsh0286xph";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
aiohttp
|
||||||
|
yarl
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
aresponses
|
||||||
|
pytest-asyncio
|
||||||
|
pytestCheckHook
|
||||||
|
];
|
||||||
|
|
||||||
|
pythonImportsCheck = [ "twentemilieu" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python client for Twente Milieu";
|
||||||
|
homepage = "https://github.com/frenck/python-twentemilieu";
|
||||||
|
license = with licenses; [ mit ];
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -8015,6 +8015,8 @@ in {
|
|||||||
|
|
||||||
tweepy = callPackage ../development/python-modules/tweepy { };
|
tweepy = callPackage ../development/python-modules/tweepy { };
|
||||||
|
|
||||||
|
twentemilieu = callPackage ../development/python-modules/twentemilieu { };
|
||||||
|
|
||||||
twiggy = callPackage ../development/python-modules/twiggy { };
|
twiggy = callPackage ../development/python-modules/twiggy { };
|
||||||
|
|
||||||
twilio = callPackage ../development/python-modules/twilio { };
|
twilio = callPackage ../development/python-modules/twilio { };
|
||||||
|
Loading…
Reference in New Issue
Block a user