My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pyplaato/default.nix

39 lines
706 B

{ lib
, buildPythonPackage
, fetchPypi
, aiohttp
, python-dateutil
, pythonOlder
}:
buildPythonPackage rec {
pname = "pyplaato";
version = "0.0.18";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-HZF3Yxb/dTQSVzTkdAbfeD1Zyf8jFHoF3nt6OcdCnAM=";
};
propagatedBuildInputs = [
aiohttp
python-dateutil
];
# Module 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 ];
};
}