python311Packages.deprecat: refactor

This commit is contained in:
Fabian Affolter 2024-03-28 10:43:58 +01:00
parent 4f28c0b741
commit 46d0743eea
1 changed files with 4 additions and 4 deletions

View File

@ -10,22 +10,22 @@
buildPythonPackage rec {
pname = "deprecat";
version = "2.1.2";
format = "setuptools";
pyproject = true;
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "mjhajharia";
repo = pname;
repo = "deprecat";
rev = "refs/tags/v${version}";
hash = "sha256-uAabZAtZDhcX6TfiM0LnrAzxxS64ys+vdodmxO//0x8=";
};
nativeBuildInputs = [
build-system = [
setuptools-scm
];
propagatedBuildInputs = [
dependencies = [
wrapt
];