python310Packages.calmjs-types: init at 1.0.1

This commit is contained in:
Jonas Heinrich 2022-08-12 16:20:31 +02:00
parent 6a2abb1ea6
commit 19c7a65eef
2 changed files with 30 additions and 0 deletions

View file

@ -0,0 +1,28 @@
{ lib
, fetchPypi
, buildPythonPackage
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "calmjs-types";
version = "1.0.1";
src = fetchPypi {
pname = "calmjs.types";
inherit version;
sha256 = "sha256-EGWYv9mx3RPqs9dnB5t3Bu3hiujL2y/XxyMP7JkjjAQ=";
extension = "zip";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "calmjs.types" ];
meta = with lib; {
description = "Types for the calmjs framework";
homepage = "https://github.com/calmjs/calmjs.types";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
};
}

View file

@ -1641,6 +1641,8 @@ self: super: with self; {
calmjs-parse = callPackage ../development/python-modules/calmjs-parse { };
calmjs-types = callPackage ../development/python-modules/calmjs-types { };
calysto = callPackage ../development/python-modules/calysto { };
calysto-scheme = callPackage ../development/python-modules/calysto-scheme { };