default.nix (656B)
1 { 2 lib, 3 fetchFromGitHub, 4 python3Packages, 5 }: 6 7 python3Packages.buildPythonPackage rec { 8 pname = "config-path"; 9 version = "1.0.5"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "barry-scott"; 14 repo = "config-path"; 15 rev = version; 16 hash = "sha256-W3qsCGYejM5J2FIYGJ5An2YCfuqQBtx6q3JCUxQAWUg="; 17 }; 18 19 build-system = with python3Packages; [ setuptools-scm ]; 20 21 meta = { 22 description = "Python library to work with paths to config folders and files in an OS independent way"; 23 homepage = "https://github.com/barry-scott/config-path"; 24 license = lib.licenses.asl20; 25 maintainers = [ lib.maintainers.sikmir ]; 26 }; 27 }