pythonPackages.xstatic-jquery: move to python-modules

This commit is contained in:
makefu
2018-02-27 10:46:52 +01:00
parent 0a57241733
commit 9fe410fd49
2 changed files with 26 additions and 15 deletions

View File

@@ -0,0 +1,25 @@
{ buildPythonPackage
, lib
, fetchPypi
}:
buildPythonPackage rec {
pname = "XStatic-jQuery";
version = "1.10.2.1";
src = fetchPypi {
inherit version pname;
sha256 = "018kx4zijflcq8081xx6kmiqf748bsjdq7adij2k91bfp1mnlhc3";
};
# no tests implemented
doCheck = false;
meta = with lib;{
homepage = http://jquery.org;
description = "jquery packaged static files for python";
license = licenses.mit;
maintainers = with maintainers; [ makefu ];
};
}