Unverified Commit f27b62e7 authored by Emily's avatar Emily Committed by GitHub
Browse files

Merge pull request #330700 from Sigmanificient/prisn

python312Packages.prison: drop nose dependency
parents 97f6946c 4d89948f
Loading
Loading
Loading
Loading
+7 −4
Original line number Diff line number Diff line
@@ -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";