2021-01-25 08:26:54 +00:00
|
|
|
{ lib, buildPythonPackage, fetchPypi, six }:
|
2018-04-03 13:17:01 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "jdatetime";
|
2019-11-19 14:35:36 +00:00
|
|
|
version = "3.6.2";
|
2018-04-03 13:17:01 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-11-19 14:35:36 +00:00
|
|
|
sha256 = "a589e35f0dab89283c1a3de9d70ed6cf657932aaed8e8ce1b0e5801aaab1da67";
|
2018-04-03 13:17:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-04-03 13:17:01 +01:00
|
|
|
description = "Jalali datetime binding for python";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://pypi.python.org/pypi/jdatetime";
|
2018-04-03 13:17:01 +01:00
|
|
|
license = licenses.psfl;
|
|
|
|
};
|
|
|
|
}
|