Files
nixpkgs/pkgs/development/python-modules/jdatetime/default.nix
T
Jörg Thalheim 5356420466 treewide: remove unused with statements from maintainer lists
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \
  -e 's!with lib.maintainers; \[ *\];![ ];!' \
  -e 's!with maintainers; \[ *\];![ ];!'
2024-07-29 10:06:20 +08:00

32 lines
580 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
six,
pythonOlder,
}:
buildPythonPackage rec {
pname = "jdatetime";
version = "5.0.0";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-LMYD2RPA2OMokoRU09KVJhywN+mVAif2fJYpq0cQ/fk=";
};
propagatedBuildInputs = [ six ];
pythonImportsCheck = [ "jdatetime" ];
meta = with lib; {
description = "Jalali datetime binding";
homepage = "https://github.com/slashmili/python-jalali";
license = licenses.psfl;
maintainers = [ ];
};
}