summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2023-09-15 14:07:19 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-09-27 15:34:36 +0200
commit13f2cc97044bc8deca79ea17cbb63b347fb06f1e (patch)
tree5262fbcbe272ca85660235735073bbb3fb07ab9f /pkgs/development/python-modules
parent91410ef0abd85c20846fc75ef04d2d35272a681d (diff)
python3Packages.uc-micro-py: 1.0.1 -> 1.0.2
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/uc-micro-py/default.nix24
1 files changed, 17 insertions, 7 deletions
diff --git a/pkgs/development/python-modules/uc-micro-py/default.nix b/pkgs/development/python-modules/uc-micro-py/default.nix
index d83a4cbd54d2..f6aa059d709c 100644
--- a/pkgs/development/python-modules/uc-micro-py/default.nix
+++ b/pkgs/development/python-modules/uc-micro-py/default.nix
@@ -3,24 +3,34 @@
, fetchFromGitHub
, pythonOlder
, pytestCheckHook
+, setuptools
}:
buildPythonPackage rec {
pname = "uc-micro-py";
- version = "1.0.1";
- format = "setuptools";
+ version = "1.0.2";
+ format = "pyproject";
- disabled = pythonOlder "3.6";
+ disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "tsutsu3";
repo = "uc.micro-py";
- rev = "v${version}";
- hash = "sha256-23mKwoRGjtxpCOC26V8bAN5QEHLDOoSqPeTlUuIrxZ0=";
+ rev = "refs/tags/v${version}";
+ hash = "sha256-PUeWYG/VyxCfhB7onAcDFow1yYqArjmfMT99+058P7U=";
};
- nativeCheckInputs = [ pytestCheckHook ];
- pythonImportsCheck = [ "uc_micro" ];
+ nativeBuildInputs = [
+ setuptools
+ ];
+
+ pythonImportsCheck = [
+ "uc_micro"
+ ];
+
+ nativeCheckInputs = [
+ pytestCheckHook
+ ];
meta = with lib; {
description = "Micro subset of unicode data files for linkify-it-py";