blob: 1f0d792b4c1d4779ae486455b4cbb8b6d1281164 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
{
lib,
fetchPypi,
buildPythonPackage,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "calmjs-types";
version = "1.0.1";
format = "setuptools";
src = fetchPypi {
pname = "calmjs.types";
inherit version;
hash = "sha256-EGWYv9mx3RPqs9dnB5t3Bu3hiujL2y/XxyMP7JkjjAQ=";
extension = "zip";
};
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "calmjs.types" ];
meta = {
description = "Types for the calmjs framework";
homepage = "https://github.com/calmjs/calmjs.types";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ onny ];
};
}
|