blob: cc0d02084464dc91e7b6b37938398d34d9e23c31 (
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
|
{
buildPythonPackage,
lib,
fetchPypi,
}:
buildPythonPackage rec {
pname = "xstatic-jquery";
version = "3.5.1.1";
format = "setuptools";
src = fetchPypi {
pname = "XStatic-jQuery";
inherit version;
sha256 = "e0ae8f8ec5bbd28045ba4bca06767a38bd5fc27cf9b71f434589f59370dcd323";
};
# no tests implemented
doCheck = false;
meta = {
homepage = "https://jquery.org";
description = "jquery packaged static files for python";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ makefu ];
};
}
|