Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions pkgs/development/python-modules/lox/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,22 +12,20 @@

buildPythonPackage rec {
pname = "lox";
version = "0.12.0";
version = "0.13.0";
pyproject = true;

src = fetchFromGitHub {
owner = "BrianPugh";
repo = "lox";
tag = "v${version}";
hash = "sha256-Iv3ZdfsvFLU6lhlH1n+eQ+KIrXESsnC1S2lVFnKFV08=";
hash = "sha256-I/+/wl+H3OLAN26qJVqyqgW72GoTddm59j2Y6fsz8AM=";
};

build-system = [ setuptools ];

dependencies = [ pathos ];

pythonRemoveDeps = [ "sphinx-rtd-theme" ];

# setup.py requires pytest-runner for setuptools, which is wrong
postPatch = ''
substituteInPlace setup.py --replace-fail '"pytest-runner",' ""
Expand All @@ -53,7 +51,7 @@ buildPythonPackage rec {

meta = {
description = "Threading and Multiprocessing made easy";
changelog = "https://github.com/BrianPugh/lox/releases/tag/v${version}";
changelog = "https://github.com/BrianPugh/lox/releases/tag/${src.tag}";
homepage = "https://github.com/BrianPugh/lox";
license = lib.licenses.asl20;
maintainers = [ lib.maintainers.greg ];
Expand Down