mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.jsondate: init at 0.1.3
This commit is contained in:
parent
3e7a07b7a8
commit
a60513428d
2 changed files with 24 additions and 0 deletions
22
pkgs/development/python-modules/jsondate/default.nix
Normal file
22
pkgs/development/python-modules/jsondate/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ 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;
|
||||
};
|
||||
}
|
|
@ -24454,6 +24454,8 @@ EOF
|
|||
parse-type = callPackage ../development/python-modules/parse-type { };
|
||||
|
||||
ephem = callPackage ../development/python-modules/ephem { };
|
||||
|
||||
jsondate = callPackage ../development/python-modules/jsondate { };
|
||||
});
|
||||
|
||||
in fix' (extends overrides packages)
|
||||
|
|
Loading…
Reference in a new issue