mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-06-14 17:23:57 +00:00
45 lines
976 B
Nix
45 lines
976 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
python,
|
|
pyyaml,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage (finalAttrs: {
|
|
pname = "dtfabric";
|
|
version = "20260506";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit (finalAttrs) pname version;
|
|
hash = "sha256-n/z2OD3vZrEKoYC3eRVIx6XpgKwTbTaKqp2O2cg11fs=";
|
|
};
|
|
|
|
pythonRemoveDeps = [ "pip" ];
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ pyyaml ];
|
|
|
|
checkPhase = ''
|
|
runHook preCheck
|
|
|
|
${python.interpreter} run_tests.py
|
|
|
|
runHook postCheck
|
|
'';
|
|
|
|
pythonImportsCheck = [ "dtfabric" ];
|
|
|
|
meta = {
|
|
description = "Project to manage data types and structures, as used in the libyal projects";
|
|
changelog = "https://github.com/libyal/dtfabric/releases/tag/${finalAttrs.version}";
|
|
downloadPage = "https://github.com/libyal/dtfabric/releases";
|
|
homepage = "https://github.com/libyal/dtfabric";
|
|
license = lib.licenses.asl20;
|
|
maintainers = with lib.maintainers; [ jayrovacsek ];
|
|
};
|
|
})
|