mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-14 21:49:34 +03:00

This reverts commit65a333600d
. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
41 lines
831 B
Nix
41 lines
831 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
requests,
|
|
tqdm,
|
|
websocket-client,
|
|
pythonOlder,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "python-mpv-jsonipc";
|
|
version = "1.2.0";
|
|
format = "setuptools";
|
|
disabled = pythonOlder "3.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "iwalton3";
|
|
repo = "python-mpv-jsonipc";
|
|
rev = "v${version}";
|
|
hash = "sha256-W9TNtbRhQmwZXhi0TJIDkZRtWhi92/iwL056YIcWnLM=";
|
|
};
|
|
|
|
# 'mpv-jsonipc' does not have any tests
|
|
doCheck = false;
|
|
|
|
propagatedBuildInputs = [
|
|
requests
|
|
tqdm
|
|
websocket-client
|
|
];
|
|
|
|
pythonImportsCheck = [ "python_mpv_jsonipc" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/iwalton3/python-mpv-jsonipc";
|
|
description = "Python API to MPV using JSON IPC";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|