0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00
nixpkgs/pkgs/development/python-modules/avro-python3/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

38 lines
726 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
isPy3k,
pycodestyle,
isort,
}:
buildPythonPackage rec {
pname = "avro-python3";
version = "1.10.2";
format = "setuptools";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "3b63f24e6b04368c3e4a6f923f484be0230d821aad65ac36108edbff29e9aaab";
};
buildInputs = [
pycodestyle
isort
];
doCheck = false; # No such file or directory: './run_tests.py
meta = with lib; {
description = "Serialization and RPC framework";
mainProgram = "avro";
homepage = "https://pypi.python.org/pypi/avro-python3/";
license = licenses.asl20;
maintainers = [
maintainers.shlevy
maintainers.timma
];
};
}