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

26 lines
488 B
Nix
Raw Normal View History

{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "XStatic-jQuery";
2018-10-16 00:46:42 +02:00
version = "3.3.1.1";
src = fetchPypi {
inherit version pname;
2018-10-16 00:46:42 +02:00
sha256 = "0xlgs4rlabzfcp8p2zspwpsljycb0djyrk7qy4qh76i7zkfhwn8j";
};
# no tests implemented
doCheck = false;
meta = with lib;{
2018-06-27 22:12:57 +02:00
homepage = https://jquery.org;
description = "jquery packaged static files for python";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}