20 lines
456 B
Nix
20 lines
456 B
Nix
{ lib, buildPythonPackage, fetchPypi, six }:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "jdatetime";
|
|
version = "3.6.2";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "a589e35f0dab89283c1a3de9d70ed6cf657932aaed8e8ce1b0e5801aaab1da67";
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
meta = with lib; {
|
|
description = "Jalali datetime binding for python";
|
|
homepage = "https://pypi.python.org/pypi/jdatetime";
|
|
license = licenses.psfl;
|
|
};
|
|
}
|