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

33 lines
745 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
setuptools,
}:
buildPythonPackage rec {
pname = "pipetools";
version = "1.1.0";
# Used github as the src since the pypi package does not include the tests
src = fetchFromGitHub {
owner = "0101";
repo = pname;
rev = "6cba9fadab07a16fd85eed16d5cffc609f84c62b";
hash = "sha256-BoZFePQCQfz1dkct5p/WQLuXoNX3eLcnKf3Mf0fG6u8=";
};
nativeCheckInputs = [ pytestCheckHook ];
propagatedBuildInputs = [ setuptools ];
pythonImportsCheck = [ "pipetools" ];
meta = {
description = "Library that enables function composition similar to using Unix pipes";
homepage = "https://0101.github.io/pipetools/";
license = lib.licenses.mit;
};
}