python3Packages.dataclass-csv: 1.4.0 -> 1.4.1 (#495234)

This commit is contained in:
Nick Cao
2026-03-02 21:37:16 +00:00
committed by GitHub
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",