My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/jsondate/default.nix

22 lines
574 B

{ 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;
};
}