nixpkgs/pkgs/development/python-modules/varint/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

28 lines
579 B
Nix

{
buildPythonPackage,
fetchPypi,
lib,
}:
buildPythonPackage rec {
pname = "varint";
version = "1.0.2";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "a6ecc02377ac5ee9d65a6a8ad45c9ff1dac8ccee19400a5950fb51d594214ca5";
};
# No tests are available
doCheck = false;
pythonImportsCheck = [ "varint" ];
meta = with lib; {
description = "Basic varint implementation in python";
homepage = "https://github.com/fmoo/python-varint";
license = licenses.mit;
maintainers = with maintainers; [ rakesh4g ];
};
}