
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.
35 lines
775 B
Nix
35 lines
775 B
Nix
{ lib
|
|
, python3Packages
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "matrix-dl";
|
|
version = "unstable-2020-07-14";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rubo77";
|
|
repo = pname;
|
|
rev = "b1a86d1421f39ee327284e1023f09dc165e3c8a5";
|
|
sha256 = "1l8nh8z7kz24v0wcy3ll3w6in2yxwa1yz8lyc3x0blz37d8ss4ql";
|
|
};
|
|
|
|
nativeBuildInputs = with python3Packages; [
|
|
setuptools
|
|
];
|
|
|
|
propagatedBuildInputs = with python3Packages; [
|
|
matrix-client
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Download backlogs from Matrix as raw text";
|
|
mainProgram = "matrix-dl";
|
|
homepage = src.meta.homepage;
|
|
license = licenses.gpl1Plus;
|
|
maintainers = with maintainers; [ aw ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|