nixpkgs/pkgs/development/python-modules/xstatic-jquery-ui/default.nix

29 lines
560 B
Nix
Raw Normal View History

{ buildPythonPackage
, lib
, fetchPypi
, xstatic-jquery
}:
buildPythonPackage rec {
pname = "XStatic-jquery-ui";
2018-10-15 15:46:42 -07:00
version = "1.12.1.1";
src = fetchPypi {
inherit version pname;
2018-10-15 15:46:42 -07:00
sha256 = "0449rkjcksq49yjyyszz9v11wa4nmvvfw0mynayah8248yxlifnn";
};
# no tests implemented
doCheck = false;
propagatedBuildInputs = [ xstatic-jquery ];
meta = with lib;{
homepage = http://jqueryui.com/;
description = "jquery-ui packaged static files for python";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}