mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
23 lines
574 B
Nix
23 lines
574 B
Nix
{ lib, fetchFromGitHub, buildPythonPackage, six }:
|
|
|
|
buildPythonPackage rec {
|
|
version = "0.1.3";
|
|
pname = "jsondate";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ilya-kolpakov";
|
|
repo = "jsondate";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "0nhvi48nc0bmad5ncyn6c9yc338krs3xf10bvv55xgz25c5gdgwy";
|
|
fetchSubmodules = true; # Fetching by tag does not work otherwise
|
|
};
|
|
|
|
propagatedBuildInputs = [ six ];
|
|
|
|
meta = {
|
|
homepage = "https://github.com/ilya-kolpakov/jsondate";
|
|
description = "JSON with datetime handling";
|
|
license = lib.licenses.mit;
|
|
};
|
|
}
|