python3Packages.dataclass-csv: 1.4.0 -> 1.4.1

This commit is contained in:
Théo Bori
2026-02-28 16:18:03 +01:00
parent 8d139e1698
commit de1f7d90b6
2 changed files with 4 additions and 28 deletions
@@ -3,31 +3,22 @@
buildPythonPackage,
fetchFromGitHub,
pytestCheckHook,
distutils,
setuptools,
hatchling,
}:
buildPythonPackage rec {
pname = "dataclass-csv";
version = "1.4.0";
version = "1.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "dfurtado";
repo = "dataclass-csv";
tag = version;
hash = "sha256-XDvQrKUtg5ptkF36xGlykhc395pmjBP/19m0EPDyaOM=";
hash = "sha256-hDnuPg5xniybR2J91KnJxSlOI+dWzUPQJtYKfqsNCvw=";
};
patches = [
./deprecated_dependency.patch
];
build-system = [
setuptools
];
dependencies = [
distutils
hatchling
];
nativeCheckInputs = [
@@ -1,15 +0,0 @@
diff --git a/setup.py b/setup.py
index b998ace..4fa4b90 100644
--- a/setup.py
+++ b/setup.py
@@ -13,9 +13,7 @@ with open("HISTORY.md") as history_file:
requirements = []
-setup_requirements = [
- "pytest-runner",
-]
+setup_requirements = []
test_requirements = [
"pytest",