Files
nixpkgs/pkgs/development/python-modules/hs-dbus-signature/default.nix
T
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
675 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
pytestCheckHook,
hypothesis,
}:
buildPythonPackage rec {
pname = "hs-dbus-signature";
version = "0.7";
format = "setuptools";
src = fetchPypi {
inherit pname version;
hash = "sha256-NNnTcSX+K8zU+sj1QBd13h7aEXN9VqltJMNWCuhgZ6I=";
};
nativeCheckInputs = [
pytestCheckHook
hypothesis
];
pythonImportsCheck = [ "hs_dbus_signature" ];
meta = with lib; {
description = "Hypothesis Strategy for Generating Arbitrary DBus Signatures";
homepage = "https://github.com/stratis-storage/hs-dbus-signature";
license = licenses.mpl20;
maintainers = with maintainers; [ nickcao ];
};
}