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