python312Packages.prison: drop nose dependency

This commit is contained in:
Sigmanificient
2024-07-28 20:00:26 +02:00
parent 6668b98f28
commit 4d89948fb6
@@ -2,14 +2,15 @@
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
six,
nose,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "prison";
version = "0.1.3";
format = "setuptools";
pyproject = true;
src = fetchFromGitHub {
owner = "betodealmeida";
@@ -18,9 +19,11 @@ buildPythonPackage rec {
hash = "sha256-qor40vUQeTdlO3vwug3GGNX5vkNaF0H7EWlRdsY4bvc=";
};
propagatedBuildInputs = [ six ];
build-system = [ setuptools ];
nativeCheckInputs = [ nose ];
dependencies = [ six ];
nativeCheckInputs = [ pytestCheckHook ];
meta = with lib; {
description = "Rison encoder/decoder";