default.nix (655B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonApplication rec { 8 pname = "apibackuper"; 9 version = "1.0.6"; 10 11 src = fetchFromGitHub { 12 owner = "ruarxive"; 13 repo = "apibackuper"; 14 rev = version; 15 hash = "sha256-2vNuzQK6Wm6DBWRSLFuy6loCLAbcql3CqSktMjGE8JE="; 16 }; 17 18 dependencies = with python3Packages; [ 19 bson 20 click 21 lxml 22 requests 23 xmltodict 24 ]; 25 26 doCheck = false; 27 28 meta = { 29 description = "Python library and cmd tool to backup API calls"; 30 homepage = "https://github.com/ruarxive/apibackuper"; 31 license = lib.licenses.mit; 32 maintainers = [ lib.maintainers.sikmir ]; 33 }; 34 }