Files
2026-07-17 07:11:22 +00:00

33 lines
668 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
jalali-core,
setuptools,
}:
buildPythonPackage rec {
pname = "jdatetime";
version = "6.0.1";
pyproject = true;
src = fetchPypi {
inherit pname version;
hash = "sha256-40nsX+TNQriObxodnR3iORv6dwKl09POhw1ZOkdVl7A=";
};
build-system = [ setuptools ];
dependencies = [ jalali-core ];
pythonImportsCheck = [ "jdatetime" ];
meta = {
description = "Jalali datetime binding";
homepage = "https://github.com/slashmili/python-jalali";
changelog = "https://github.com/slashmili/python-jalali/blob/v${version}/CHANGELOG.md";
license = lib.licenses.psfl;
maintainers = [ ];
};
}