depot/third_party/nixpkgs/pkgs/development/python-modules/hs-dbus-signature/default.nix
Default email 504525a148 Project import generated by Copybara.
GitOrigin-RevId: bd645e8668ec6612439a9ee7e71f7eac4099d4f6
2024-01-02 12:29:13 +01:00

31 lines
670 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 = "A Hypothesis Strategy for Generating Arbitrary DBus Signatures";
homepage = "https://github.com/stratis-storage/hs-dbus-signature";
license = licenses.mpl20;
maintainers = with maintainers; [ nickcao ];
};
}