default.nix (719B)
1 { 2 lib, 3 python3Packages, 4 fetchFromGitHub, 5 }: 6 7 python3Packages.buildPythonPackage { 8 pname = "thinplatespline"; 9 version = "0-unstable-2024-02-06"; 10 pyproject = true; 11 12 src = fetchFromGitHub { 13 owner = "wladich"; 14 repo = "thinplatespline"; 15 rev = "81f40c74663d9510ceedf57a04a711ec7fc8b7fa"; 16 hash = "sha256-1U5WEPFH5dhf2lkfZY6rrwlUNq/rY2mSlgEZVnReyng="; 17 }; 18 19 build-system = with python3Packages; [ setuptools ]; 20 21 doCheck = false; 22 23 pythonImportsCheck = [ "tps" ]; 24 25 meta = { 26 description = "Python library for thin plate spline calculations"; 27 homepage = "https://github.com/wladich/thinplatespline"; 28 license = lib.licenses.mit; 29 maintainers = [ lib.maintainers.sikmir ]; 30 }; 31 }