mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-10 12:53:58 +00:00
12 lines
317 B
Nix
12 lines
317 B
Nix
{ buildPythonPackage, fetchurl }:
|
|
buildPythonPackage {
|
|
pname = "tor2mag";
|
|
version = "0.0.1";
|
|
doCheck = false;
|
|
|
|
src = fetchurl {
|
|
url = "https://raw.githubusercontent.com/repolho/torrent2magnet/refs/heads/master/torrent2magnet.py";
|
|
sha256 = "sha256-sXMCx9dYg/JYQqbsDHBMJqRqT16WPbBj1O3+Hqxxhkc=";
|
|
};
|
|
}
|