Files
nixpkgs/pkgs/development/python-modules/twitch-python/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

47 lines
776 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
requests,
rx,
pytestCheckHook,
responses,
isPy3k,
}:
buildPythonPackage rec {
pname = "twitch-python";
version = "0.0.20";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-bgnXIQuOCrtoknZ9ciB56zWxTCnncM2032TVaey6oXw=";
};
disabled = !isPy3k;
postPatch = ''
substituteInPlace setup.py --replace "'pipenv'," ""
'';
propagatedBuildInputs = [
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 = [ ];
};
}