Skip to content

Commit

Permalink
python311Packages.rich-rst: 1.2.0 -> 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
r-ryantm authored and NickCao committed Apr 29, 2024
1 parent 9e5cd80 commit 5a8f7c9
Showing 1 changed file with 18 additions and 16 deletions.
34 changes: 18 additions & 16 deletions pkgs/development/python-modules/rich-rst/default.nix
Original file line number Diff line number Diff line change
@@ -1,31 +1,33 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, docutils
, rich
{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
docutils,
rich,
pytestCheckHook,
}:

buildPythonPackage rec {
pname = "rich-rst";
version = "1.2.0";
format = "pyproject";
version = "1.3.0";
pyproject = true;

src = fetchFromGitHub {
owner = "wasi-master";
repo = pname;
repo = "rich-rst";
rev = "refs/tags/v${version}";
hash = "sha256-jFPboZ5/T2I6EuyVM+45lrLWen8Kqf94gWXS1WDf1qU=";
hash = "sha256-A3SPbu1N5X55c32S8z8UPpmniJT+mdqfb1+zQEJMA5k=";
};

nativeBuildInputs = [
setuptools
];
build-system = [ setuptools ];

propagatedBuildInputs = [ docutils rich ];
dependencies = [
docutils
rich
];

# Module has no tests
doCheck = false;
nativeCheckInputs = [ pytestCheckHook ];

pythonImportsCheck = [ "rich_rst" ];

Expand Down

0 comments on commit 5a8f7c9

Please sign in to comment.