Files
nixpkgs/pkgs/development/python-modules/apeye-core/default.nix
Peder Bergebakken Sundt d6ca5ed287 treewide: remove empty build inputs
Done with

```sh
regex='\s*(nativeBuild|build|check|nativeCheck)Inputs *= *\[ *\];'
rg "^$regex$" -l | xe sd "\n\n$regex\n" "\n"
rg "^$regex$" -l | xe sd "\n$regex\n" "\n"
rg "^$regex$" -l | xe sd "\n$regex\n" "\n"
```
2024-10-04 19:03:59 +02:00

39 lines
736 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
hatchling,
hatch-requirements-txt,
domdf-python-tools,
idna,
}:
buildPythonPackage rec {
pname = "apeye-core";
version = "1.1.5";
pyproject = true;
src = fetchPypi {
inherit version;
pname = "apeye_core";
hash = "sha256-Xecu09AMybIP6lXlS3q49e+FAOszpTaLwWKlWF4jilU=";
};
build-system = [ hatchling ];
nativeBuildInputs = [
hatch-requirements-txt
];
dependencies = [
domdf-python-tools
idna
];
meta = {
description = "Core (offline) functionality for the apeye library.";
homepage = "https://github.com/domdfcoding/apyey-core";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ tyberius-prime ];
};
}