mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-30 04:04:53 +00:00
37 lines
771 B
Nix
37 lines
771 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pydantic,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "enochecker-core";
|
|
version = "0.13.0";
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
inherit version;
|
|
pname = "enochecker_core";
|
|
hash = "sha256-A/WcNcp09BNXfgvm1R38ITfok5MHtUwBBsht8XwtvAg=";
|
|
};
|
|
|
|
build-system = [ setuptools ];
|
|
|
|
dependencies = [ pydantic ];
|
|
|
|
pythonImportsCheck = [ "enochecker_core" ];
|
|
|
|
# no tests upstream
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Base library for enochecker libs";
|
|
homepage = "https://github.com/enowars/enochecker_core";
|
|
changelog = "https://github.com/enowars/enochecker_core/releases/tag/v${version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ fwc ];
|
|
};
|
|
}
|