linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / twitch-python / default.nix
blobd4910cfdbe9de288e4eabaf415c577fa8e2ec0dd
1 { lib, buildPythonPackage, fetchPypi, requests, rx, pytestCheckHook, responses, isPy3k }:
3 buildPythonPackage rec {
4   pname = "twitch-python";
5   version = "0.0.19";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "b0b02abdd33458e4ffabc632aa6a6779f3599e188819632551353b6c5553f5c5";
10   };
12   disabled = !isPy3k;
14   postPatch = ''
15     substituteInPlace setup.py --replace "'pipenv'," ""
16   '';
18   propagatedBuildInputs = [ requests rx ];
20   checkInputs = [ pytestCheckHook responses ];
22   pythonImportsCheck = [ "twitch" ];
24   meta = with lib; {
25     description = "Twitch module for Python";
26     homepage = "https://github.com/PetterKraabol/Twitch-Python";
27     license = licenses.mit;
28     maintainers = with maintainers; [ marsam ];
29   };