Skip to content

Commit

Permalink
python312Packages.prison: drop nose dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Sigmanificient committed Jul 28, 2024
1 parent 6668b98 commit 4d89948
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions pkgs/development/python-modules/prison/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand All @@ -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";
Expand Down

0 comments on commit 4d89948

Please sign in to comment.