Files
nixpkgs/pkgs/development/python-modules/python-snappy/default.nix
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

39 lines
696 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
cramjam,
setuptools,
snappy,
unittestCheckHook,
}:
buildPythonPackage rec {
pname = "python-snappy";
version = "0.7.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-G8KdNiEdRLufBPPXzPuurrvC9ittQPT8Tt0fsWvFLBM=";
};
build-system = [
cramjam
setuptools
];
buildInputs = [ snappy ];
dependencies = [ cramjam ];
nativeCheckInputs = [ unittestCheckHook ];
meta = with lib; {
description = "Python library for the snappy compression library from Google";
homepage = "https://github.com/intake/python-snappy";
license = licenses.bsd3;
maintainers = [ ];
};
}