python3Packages.pyplaato: init at 0.0.15
This commit is contained in:
parent
d485a4db25
commit
8562c0d49e
29
pkgs/development/python-modules/pyplaato/default.nix
Normal file
29
pkgs/development/python-modules/pyplaato/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ lib
|
||||||
|
, buildPythonPackage
|
||||||
|
, fetchPypi
|
||||||
|
, aiohttp
|
||||||
|
, python-dateutil
|
||||||
|
}:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "pyplaato";
|
||||||
|
version = "0.0.15";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1nykbkv2fg1x5min07cbi44x6am48f5gw3mnyj7x2kpmj6sqfpqp";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ aiohttp python-dateutil ];
|
||||||
|
|
||||||
|
# Project has no tests
|
||||||
|
doCheck = false;
|
||||||
|
pythonImportsCheck = [ "pyplaato" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Python API client for fetching Plaato data";
|
||||||
|
homepage = "https://github.com/JohNan/pyplaato";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ fab ];
|
||||||
|
};
|
||||||
|
}
|
@ -5868,6 +5868,8 @@ in {
|
|||||||
|
|
||||||
pypillowfight = callPackage ../development/python-modules/pypillowfight { };
|
pypillowfight = callPackage ../development/python-modules/pypillowfight { };
|
||||||
|
|
||||||
|
pyplaato = callPackage ../development/python-modules/pyplaato { };
|
||||||
|
|
||||||
pyplatec = callPackage ../development/python-modules/pyplatec { };
|
pyplatec = callPackage ../development/python-modules/pyplatec { };
|
||||||
|
|
||||||
pypoppler = callPackage ../development/python-modules/pypoppler { };
|
pypoppler = callPackage ../development/python-modules/pypoppler { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user