python310Packages.pycketcasts: init at 1.0.1

This commit is contained in:
Fabian Affolter 2022-06-13 09:55:44 +02:00
parent 4ebc288038
commit f4ab2ad06f
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,41 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, python-magic
, pythonOlder
, requests
}:
buildPythonPackage rec {
pname = "pycketcasts";
version = "1.0.1";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "nwithan8";
repo = pname;
rev = version;
hash = "sha256-O4j89fE7fYPthhCH8b2gGskkelEA4mU6GvSbKIl+4Mk=";
};
propagatedBuildInputs = [
python-magic
requests
];
# Module has no tests
doCheck = false;
pythonImportsCheck = [
"pycketcasts"
];
meta = with lib; {
description = "Module to interact with PocketCast's unofficial API";
homepage = "https://github.com/nwithan8/pycketcasts";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}

View file

@ -6548,6 +6548,8 @@ in {
pyatome = callPackage ../development/python-modules/pyatome { };
pycketcasts = callPackage ../development/python-modules/pycketcasts { };
pycontrol4 = callPackage ../development/python-modules/pycontrol4 { };
pycoolmasternet-async = callPackage ../development/python-modules/pycoolmasternet-async { };