mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
pythonPackages.webassets: init at 0.11.1
This commit is contained in:
parent
41648cbb8b
commit
75d9531c47
1 changed files with 19 additions and 0 deletions
|
@ -21487,6 +21487,25 @@ in modules // {
|
|||
};
|
||||
};
|
||||
|
||||
webassets = buildPythonPackage rec {
|
||||
name = "webassets-${version}";
|
||||
version = "0.11.1";
|
||||
|
||||
src = pkgs.fetchurl {
|
||||
url = "https://pypi.python.org/packages/source/w/webassets/${name}.tar.gz";
|
||||
sha256 = "0p1qypcbq9b88ipcylxh3bbnby5n6dr421wb4bwmrlcrgvj4r5lz";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = with self; [ pyyaml ];
|
||||
|
||||
meta = {
|
||||
description = "Media asset management for Python, with glue code for various web frameworks";
|
||||
homepage = http://github.com/miracle2k/webassets/;
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ abbradar ];
|
||||
};
|
||||
};
|
||||
|
||||
webcolors = buildPythonPackage rec {
|
||||
name = "webcolors-1.4";
|
||||
|
|
Loading…
Reference in a new issue