mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
pythonPackages.pypugjs: 5.9.7 -> 5.9.8
This commit is contained in:
parent
ec7838747c
commit
16666a7177
1 changed files with 5 additions and 9 deletions
|
@ -1,17 +1,13 @@
|
|||
{ stdenv, buildPythonPackage, fetchFromGitHub, fetchpatch, six, chardet, nose
|
||||
{ stdenv, buildPythonPackage, fetchPypi, fetchpatch, six, chardet, nose
|
||||
, django, jinja2, tornado, pyramid, pyramid_mako, Mako }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypugjs";
|
||||
version = "5.9.7";
|
||||
version = "5.9.8";
|
||||
|
||||
# PyPI source tarball is missing files
|
||||
# https://github.com/kakulukia/pypugjs/issues/68
|
||||
src = fetchFromGitHub {
|
||||
owner = "kakulukia";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1wvl0n5c3xpani5yn1740f9yd72pjcqg7zy7sj4553m0mlwj9pvc";
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "1iy8k56rbslxcylhamdik2bd6gqqirrix55mrdn29zz9gl6vg1xi";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ six chardet ];
|
||||
|
|
Loading…
Reference in a new issue