python3Packages.minikanren: 1.0.3 -> 1.0.5

This commit was automatically generated using update-python-libraries.

Changed files
+14 -7
pkgs
development
python-modules
minikanren
+14 -7
pkgs/development/python-modules/minikanren/default.nix
···
py,
pytestCheckHook,
pytest-html,
+
setuptools,
+
setuptools-scm,
}:
-
buildPythonPackage {
+
buildPythonPackage rec {
pname = "minikanren";
-
version = "1.0.3";
-
format = "setuptools";
+
version = "1.0.5";
+
pyproject = true;
src = fetchFromGitHub {
owner = "pythological";
repo = "kanren";
-
rev = "5aa9b1734cbb3fe072a7c72b46e1b72a174d28ac";
-
hash = "sha256-daAtREgm91634Q0mc0/WZivDiyZHC7TIRoGRo8hMnGE=";
+
tag = "v${version}";
+
hash = "sha256-lCQ0mKT99zK5A74uoo/9bP+eFdm3MC43Fh8+P2krXrs=";
};
-
propagatedBuildInputs = [
+
build-system = [
+
setuptools
+
setuptools-scm
+
];
+
+
dependencies = [
toolz
cons
multipledispatch
···
meta = with lib; {
description = "Relational programming in Python";
homepage = "https://github.com/pythological/kanren";
-
changelog = "https://github.com/pythological/kanren/releases";
+
changelog = "https://github.com/pythological/kanren/releases/tag/${src.tag}";
license = licenses.bsd3;
maintainers = with maintainers; [ Etjean ];
};