mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-14 20:10:25 +08:00
This reverts commit65a333600d. This wasn't tested for correctness with something like fodwatch [0], and should not have been (self-)merged so quickly, especially without further review. It also resulted in the breakage of at least one package [1] (and that's the one we know of and was caught). A few packages that were updated in between this commit and this revert were not reverted back to using `rev`, but other than that, this is a 1:1 revert. [0]: https://codeberg.org/raphaelr/fodwatch [1]: https://github.com/NixOS/nixpkgs/pull/396904 /758551e458
44 lines
870 B
Nix
44 lines
870 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
dbus-signature-pyparsing,
|
|
dbus-python,
|
|
pytestCheckHook,
|
|
hypothesis,
|
|
hs-dbus-signature,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "into-dbus-python";
|
|
version = "0.8.2";
|
|
format = "setuptools";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "stratis-storage";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-Ld/DyhVaDiWUXgqmvSmEHqFW2dcoRNM0O4X5DXE3UtM=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
dbus-signature-pyparsing
|
|
dbus-python
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
hypothesis
|
|
hs-dbus-signature
|
|
];
|
|
|
|
pythonImportsCheck = [ "into_dbus_python" ];
|
|
|
|
meta = with lib; {
|
|
description = "Transformer to dbus-python types";
|
|
homepage = "https://github.com/stratis-storage/into-dbus-python";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ nickcao ];
|
|
};
|
|
}
|