default.nix (699B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonPackage rec { 8 pname = "mikatools"; 9 version = "1.0.1"; 10 11 src = fetchFromGitHub { 12 owner = "mikahama"; 13 repo = "mikatools"; 14 rev = version; 15 hash = "sha256-2YpRTSZWJVXMoTLDBFS+tFkmA8pOBsqWF7Z85gtIfY0="; 16 }; 17 18 dependencies = with python3Packages; [ 19 requests 20 cryptography 21 tqdm 22 ]; 23 24 nativeCheckInputs = with python3Packages; [ pytestCheckHook ]; 25 26 meta = { 27 description = "Mikatools provides fast and easy methods for common Python coding tasks"; 28 homepage = "https://github.com/mikahama/mikatools"; 29 license = lib.licenses.mit; 30 maintainers = [ lib.maintainers.sikmir ]; 31 }; 32 }