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