bepasty: 0.4.0 -> 0.5.0

This commit is contained in:
makefu 2018-10-16 00:46:55 +02:00
parent 387632ab33
commit c539c020be
No known key found for this signature in database
GPG key ID: 36F7711F3FC0F225

View file

@ -1,15 +1,15 @@
{ python { python3Packages
, lib , lib
}: }:
with python.pkgs; with python3Packages;
#We need to use buildPythonPackage here to get the PYTHONPATH build correctly. #We need to use buildPythonPackage here to get the PYTHONPATH build correctly.
#This is needed for services.bepasty #This is needed for services.bepasty
#https://github.com/NixOS/nixpkgs/pull/38300 #https://github.com/NixOS/nixpkgs/pull/38300
buildPythonPackage rec { buildPythonPackage rec {
pname = "bepasty"; pname = "bepasty";
version = "0.4.0"; version = "0.5.0";
propagatedBuildInputs = [ propagatedBuildInputs = [
flask flask
@ -22,9 +22,12 @@ buildPythonPackage rec {
xstatic-jquery-ui xstatic-jquery-ui
xstatic-pygments xstatic-pygments
]; ];
buildInputs = [ setuptools_scm ];
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0bs79pgrjlnkmjfyj2hllbx3rw757va5w2g2aghi9cydmsl7gyi4"; sha256 = "1y3smw9620w2ia4zfsl2svb9j7mkfgc8z1bzjffyk1w5vryhwikh";
}; };
checkInputs = [ checkInputs = [