python310Packages.jc: 1.21.2 -> 1.22.0

This commit is contained in:
R. Ryantm 2022-09-28 00:35:51 +00:00 committed by Jonathan Ringer
parent 5774027416
commit 98f590d677

View File

@ -10,14 +10,14 @@
buildPythonPackage rec {
pname = "jc";
version = "1.21.2";
version = "1.22.0";
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "kellyjonbrazil";
repo = pname;
rev = "v${version}";
sha256 = "sha256-gzxN2ZbnZw7EE5oVeSpugzl/paAbyKKQlxVs/8n3Hzw=";
rev = "refs/tags/v${version}";
sha256 = "sha256-cRa52rFZlSH0D5u9L7NcWbQGCNdOlRE2koRi8VgVpAo=";
};
propagatedBuildInputs = [ ruamel-yaml xmltodict pygments ];