nixpkgs/pkgs/development/python-modules/zephyr-python-api/default.nix
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

36 lines
729 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
requests,
setuptools,
}:
buildPythonPackage rec {
pname = "zephyr-python-api";
version = "0.1.0";
format = "pyproject";
src = fetchPypi {
pname = "zephyr_python_api";
inherit version;
hash = "sha256-YupGiybfhwb+I4ofr6RNBzS6LQfx5BQD/SU5nYrnqFk=";
};
nativeBuildInputs = [ setuptools ];
propagatedBuildInputs = [ requests ];
# No tests in archive
doCheck = false;
pythonImportsCheck = [ "zephyr" ];
meta = {
homepage = "https://github.com/nassauwinter/zephyr-python-api";
description = "Set of wrappers for Zephyr Scale (TM4J) REST API";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ rapiteanu ];
};
}