mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
5a3548349f
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/isso/versions
40 lines
748 B
Nix
40 lines
748 B
Nix
{ stdenv, python2, fetchFromGitHub }:
|
|
|
|
with python2.pkgs; buildPythonApplication rec {
|
|
pname = "isso";
|
|
version = "0.12.2";
|
|
|
|
# no tests on PyPI
|
|
src = fetchFromGitHub {
|
|
owner = "posativ";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "18v8lzwgl5hcbnawy50lfp3wnlc0rjhrnw9ja9260awkx7jra9ba";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
bleach
|
|
cffi
|
|
configparser
|
|
html5lib
|
|
ipaddr
|
|
jinja2
|
|
misaka
|
|
werkzeug
|
|
];
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
checkPhase = ''
|
|
${python.interpreter} setup.py nosetests
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A commenting server similar to Disqus";
|
|
homepage = https://posativ.org/isso/;
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
};
|
|
}
|
|
|