depot/third_party/nixpkgs/pkgs/development/python-modules/asdf-transform-schemas/default.nix

41 lines
985 B
Nix
Raw Normal View History

{
lib,
asdf-standard,
buildPythonPackage,
fetchPypi,
importlib-resources,
pythonOlder,
setuptools-scm,
}:
buildPythonPackage rec {
pname = "asdf-transform-schemas";
version = "0.5.0";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "asdf_transform_schemas";
inherit version;
hash = "sha256-gs9MeCV1c0qJUyfyX/WDzpSZ1+K4Nv6IgLLXlhxrRis=";
};
build-system = [ setuptools-scm ];
dependencies = [ asdf-standard ] ++ lib.optionals (pythonOlder "3.9") [ importlib-resources ];
# Circular dependency on asdf
doCheck = false;
pythonImportsCheck = [ "asdf_transform_schemas" ];
meta = with lib; {
description = "ASDF schemas for validating transform tags";
homepage = "https://github.com/asdf-format/asdf-transform-schemas";
changelog = "https://github.com/asdf-format/asdf-transform-schemas/releases/tag/${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ fab ];
};
}