mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-30 17:43:42 +00:00
33afbf39f6
checkInputs used to be added to nativeBuildInputs. Now we have nativeCheckInputs to do that instead. Doing this treewide change allows to keep hashes identical to before the introduction of nativeCheckInputs.
31 lines
741 B
Nix
31 lines
741 B
Nix
{ lib, buildPythonPackage, fetchPypi, requests, rx, pytestCheckHook, responses, isPy3k }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "twitch-python";
|
|
version = "0.0.20";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "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 = with maintainers; [ marsam ];
|
|
};
|
|
}
|