159e378cbb
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
49 lines
815 B
Nix
49 lines
815 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
requests,
|
|
rx,
|
|
pytestCheckHook,
|
|
responses,
|
|
isPy3k,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "twitch-python";
|
|
version = "0.0.20";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-bgnXIQuOCrtoknZ9ciB56zWxTCnncM2032TVaey6oXw=";
|
|
};
|
|
|
|
disabled = !isPy3k;
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace-fail "'pipenv'," ""
|
|
'';
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [
|
|
requests
|
|
rx
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
responses
|
|
];
|
|
|
|
pythonImportsCheck = [ "twitch" ];
|
|
|
|
meta = with lib; {
|
|
description = "Twitch module for Python";
|
|
homepage = "https://github.com/PetterKraabol/Twitch-Python";
|
|
license = licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|