summary refs log tree commit diff
path: root/pkgs/development/python-modules/jdatetime/default.nix
blob: a43dbf737167bfbf9d1a657aecd476dd0dc69228 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi, six }:

buildPythonPackage rec {
  pname = "jdatetime";
  version = "2.0.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "7facd437d27365e217787e1013ecdc402aa77af7248e16128f6a753920000905";
  };

  propagatedBuildInputs = [ six ];

  meta = with stdenv.lib; {
    description = "Jalali datetime binding for python";
    homepage = https://pypi.python.org/pypi/jdatetime;
    license = licenses.psfl;
  };
}