mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-23 13:24:29 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
63 lines
1.7 KiB
Nix
63 lines
1.7 KiB
Nix
{ lib
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
, fetchurl
|
|
, youtube-dl
|
|
}:
|
|
|
|
let
|
|
install-freedesktop = python3Packages.buildPythonPackage rec {
|
|
pname = "install-freedesktop";
|
|
version = "0.1.2-1-g2673e8d";
|
|
format = "setuptools";
|
|
|
|
src = fetchurl {
|
|
name = "Thann-install_freedesktop-${version}.tar.gz";
|
|
url = "https://github.com/thann/install_freedesktop/tarball/2673e8da4a67bee0ffc52a0ea381a541b4becdd4";
|
|
hash = "sha256-O08G0iMGsF1DSyliXOHTIsOxDdJPBabNLXRhz5osDUk=";
|
|
};
|
|
|
|
# package has no tests
|
|
doCheck = false;
|
|
};
|
|
in
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "play-with-mpv";
|
|
version = "unstable-2021-04-02";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "thann";
|
|
repo = "play-with-mpv";
|
|
rev = "07a9c1dd57d9e16538991b13fd3e2ed54d6e3a2d";
|
|
hash = "sha256-ZtUFzgYGNa9+g2xDONW8B5bbsbXmyY3IeT1GQH0AVIw=";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace setup.py --replace \
|
|
'"https://github.com/thann/install_freedesktop/tarball/master#egg=install_freedesktop-0.2.0"' \
|
|
'"file://${install-freedesktop}#egg=install_freedesktop-0.2.0"' \
|
|
--replace 'version = get_version()' 'version = "0.1.0.post9"'
|
|
'';
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
install-freedesktop
|
|
wheel
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
youtube-dl
|
|
];
|
|
|
|
# package has no tests
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Chrome extension and python server that allows you to play videos in webpages with MPV instead";
|
|
homepage = "https://github.com/Thann/play-with-mpv";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ dawidsowa ];
|
|
mainProgram = "play-with-mpv";
|
|
};
|
|
}
|