octoprint: 1.3.10 -> 1.3.11 (#62321)

octoprint: 1.3.10 -> 1.3.11
This commit is contained in:
Gabriel Ebner
2019-06-01 11:27:56 +02:00
committed by GitHub
8 changed files with 75 additions and 23 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "cachelib";
version = "0.1";
src = fetchPypi {
inherit pname version;
sha256 = "13dfv0a4ahgx0wmpqv8jqhshim4229p9c1c7gcsra81pkm89p24b";
};
meta = with stdenv.lib; {
homepage = "https://github.com/pallets/cachelib";
description = "Collection of cache libraries in the same API interface";
license = licenses.bsd3;
maintainers = with maintainers; [ gebner ];
};
}

View File

@@ -7,22 +7,18 @@
buildPythonPackage rec {
pname = "Markdown";
version = "2.6.10";
version = "3.1.1";
src = fetchPypi {
extension = "zip";
inherit pname version;
sha256 = "cfa536d1ee8984007fcecc5a38a493ff05c174cb74cb2341dafd175e6bc30851";
sha256 = "2e50876bcdd74517e7b71f3e7a76102050edec255b3983403f1a63e7c8a41e7a";
};
# error: invalid command 'test'
# doCheck = false;
checkInputs = [ nose pyyaml ];
meta = {
description = "A Python implementation of John Grubers Markdown with Extension support";
homepage = https://github.com/Python-Markdown/markdown;
description = "A Python implementation of John Gruber's Markdown with Extension support";
homepage = "https://github.com/Python-Markdown/markdown";
license = lib.licenses.bsd3;
};
}

View File

@@ -2,15 +2,15 @@
buildPythonPackage rec {
pname = "pylru";
version = "1.1.0";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "e03a3d354eb8fdfa11638698e8a1f06cd3b3a214ebc0a120c603a79290d9ebec";
sha256 = "492f934bb98dc6c8b2370c02c95c65516ddc08c8f64d27f70087eb038621d297";
};
meta = with lib; {
homepage = https://github.com/jlhutch/pylru;
homepage = "https://github.com/jlhutch/pylru";
description = "A least recently used (LRU) cache implementation";
license = licenses.gpl2;
maintainers = with maintainers; [ abbradar ];

View File

@@ -0,0 +1,20 @@
{ stdenv, buildPythonPackage, fetchPypi, urllib3, certifi }:
buildPythonPackage rec {
pname = "sentry-sdk";
version = "0.8.0";
src = fetchPypi {
inherit pname version;
sha256 = "f5819df450d7b0696be69a0c6d70a09e4890a3844ee8ccb7a461794135bd5965";
};
propagatedBuildInputs = [ urllib3 certifi ];
meta = with stdenv.lib; {
homepage = "https://github.com/getsentry/sentry-python";
description = "New Python SDK for Sentry.io";
license = licenses.bsd2;
maintainers = with maintainers; [ gebner ];
};
}