Merge pull request #155761 from r-ryantm/auto-update/python310Packages.jdatetime
python310Packages.jdatetime: 3.8.0 -> 3.8.1
This commit is contained in:
commit
aec4ff27f3
1 changed files with 21 additions and 6 deletions
|
@ -1,19 +1,34 @@
|
|||
{ lib, buildPythonPackage, fetchPypi, six }:
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, six
|
||||
, pythonOlder
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "jdatetime";
|
||||
version = "3.8.0";
|
||||
version = "3.8.1";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "389a0723a8011379a5e34386ec466cb3f65b2d5cb5422702c1d3aecb6ac192d0";
|
||||
sha256 = "db57ee517356b1bfc1603ef412f5da61eae92241ba0bcaf0851028cae424780c";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six ];
|
||||
propagatedBuildInputs = [
|
||||
six
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"jdatetime"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Jalali datetime binding for python";
|
||||
homepage = "https://pypi.python.org/pypi/jdatetime";
|
||||
description = "Jalali datetime binding";
|
||||
homepage = "https://github.com/slashmili/python-jalali";
|
||||
license = licenses.psfl;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue