mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 01:46:30 +00:00
20 lines
452 B
Nix
20 lines
452 B
Nix
|
{ stdenv, buildPythonPackage, fetchPypi, six }:
|
||
|
|
||
|
buildPythonPackage rec {
|
||
|
pname = "jdatetime";
|
||
|
version = "1.7.1";
|
||
|
|
||
|
src = fetchPypi {
|
||
|
inherit pname version;
|
||
|
sha256 = "1b1ksspm86r272ar8v0v4ip1821i4azpix6xhxpb4l133iwsb2y0";
|
||
|
};
|
||
|
|
||
|
propagatedBuildInputs = [ six ];
|
||
|
|
||
|
meta = with stdenv.lib; {
|
||
|
description = "Jalali datetime binding for python";
|
||
|
homepage = https://pypi.python.org/pypi/jdatetime;
|
||
|
license = licenses.psfl;
|
||
|
};
|
||
|
}
|