Merge pull request #105309 from bhipple/add/qmk

python3Packages.hjson: init at 3.0.2
This commit is contained in:
Sandro 2020-11-29 03:47:54 +01:00 committed by GitHub
commit 32c7524f78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,24 @@
{ stdenv
, buildPythonPackage
, fetchFromGitHub
}:
buildPythonPackage rec {
pname = "hjson";
version = "3.0.2";
# N.B. pypi src tarball does not have tests
src = fetchFromGitHub {
owner = "hjson";
repo = "hjson-py";
rev = "v${version}";
sha256 = "1jc7j790rcqnhbrfj4lhnz3f6768dc55aij840wmx16jylfqpc2n";
};
meta = with stdenv.lib; {
description = "A user interface for JSON";
homepage = "https://github.com/hjson/hjson-py";
license = licenses.mit;
maintainers = with maintainers; [ bhipple ];
};
}

View File

@ -2757,6 +2757,8 @@ in {
hiyapyco = callPackage ../development/python-modules/hiyapyco { };
hjson = callPackage ../development/python-modules/hjson { };
hkdf = callPackage ../development/python-modules/hkdf { };
hmmlearn = callPackage ../development/python-modules/hmmlearn { };