python3Packages.mistune_2_0: 2.0.0rc1 → 2.0.2

This commit is contained in:
Nikolay Korotkiy 2021-12-24 07:48:38 +03:00 committed by Nikolay Korotkiy
parent d4ca3af09b
commit 3c26e163e6
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5
2 changed files with 5 additions and 4 deletions

View file

@ -1,7 +1,7 @@
{ lib, buildPythonPackage, fetchPypi, nose, version, sha256 }:
{ lib, buildPythonPackage, fetchPypi, nose, version, sha256, format ? "setuptools" }:
buildPythonPackage rec {
inherit version;
inherit version format;
pname = "mistune";
src = fetchPypi {

View file

@ -4,8 +4,9 @@ self: rec {
sha256 = "59a3429db53c50b5c6bcc8a07f8848cb00d7dc8bdb431a4ab41920d201d4756e";
};
mistune_2_0 = self.callPackage ./common.nix {
version = "2.0.0rc1";
sha256 = "1nd7iav1ixh9hlj4hxn6lmpava88d86ys8rqm30wgvr7gjlxnas5";
version = "2.0.2";
sha256 = "sha256-b8iMPLSduosWaHtBcl5mHPhXhMEuiXSim50zbdWWw6E=";
format = "pyproject";
};
mistune = mistune_0_8;
}