mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 09:22:31 -06:00
nix: add partftpy package
This commit is contained in:
parent
fe529dafab
commit
9858b714b4
13
flake.nix
13
flake.nix
|
@ -16,6 +16,19 @@
|
||||||
copyparty = final.python3.pkgs.callPackage ./contrib/package/nix/copyparty {
|
copyparty = final.python3.pkgs.callPackage ./contrib/package/nix/copyparty {
|
||||||
ffmpeg = final.ffmpeg-full;
|
ffmpeg = final.ffmpeg-full;
|
||||||
};
|
};
|
||||||
|
python3 = prev.python3.override {
|
||||||
|
packageOverrides = pyFinal: pyPrev: {
|
||||||
|
partftpy = pyFinal.tftpy.overrideAttrs {
|
||||||
|
pname = "partftpy";
|
||||||
|
version = "0.4.0";
|
||||||
|
src = final.fetchurl {
|
||||||
|
url = "https://github.com/9001/partftpy/releases/download/v0.4.0/partftpy-0.4.0.tar.gz";
|
||||||
|
hash = "sha256-5Q2zyuJ892PGZmb+YXg0ZPW/DK8RDL1uE0j5HPd4We0=";
|
||||||
|
};
|
||||||
|
pythonImportsCheck = [ "partftpy.TftpServer" ];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
// flake-utils.lib.eachDefaultSystem (
|
// flake-utils.lib.eachDefaultSystem (
|
||||||
|
|
Loading…
Reference in a new issue