summary refs log tree commit diff
path: root/pkgs/development/python-modules/jdatetime/default.nix
blob: eed6a8b979b4a28fdc04ac52611a0a8f914e7bac (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.1.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "ac5646460defa5bf3d062504d870954c77d6234536365baf52433fb845b620d0";
  };

  propagatedBuildInputs = [ six ];

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