My Nix Configuration
1{ 2 fetchFromGitHub, 3 python3Packages, 4}: 5python3Packages.buildPythonApplication rec { 6 pname = "doc2dash"; 7 version = "3.1.0"; 8 pyproject = true; 9 10 src = fetchFromGitHub { 11 owner = "hynek"; 12 repo = "doc2dash"; 13 rev = version; 14 hash = "sha256-u6K+BDc9tUxq4kCekTaqQLtNN/OLVc3rh14sVSfPtoQ="; 15 }; 16 17 build-system = with python3Packages; [ 18 hatchling 19 hatch-vcs 20 hatch-fancy-pypi-readme 21 ]; 22 23 dependencies = with python3Packages; [ 24 attrs 25 beautifulsoup4 26 click 27 rich 28 ]; 29 30 nativeCheckInputs = with python3Packages; [ 31 pytestCheckHook 32 pytest-cov-stub 33 ]; 34}