Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, buildPythonPackage, fetchPypi, flask, pytest }: 2 3buildPythonPackage rec { 4 pname = "Flask-Script"; 5 version = "2.0.6"; 6 7 src = fetchPypi { 8 inherit pname version; 9 sha256 = "0zqh2yq8zk7m9b4xw1ryqmrljkdigfb3hk5155a3b5hkfnn6xxyf"; 10 }; 11 12 propagatedBuildInputs = [ flask ]; 13 checkInputs = [ pytest ]; 14 15 # No tests in archive 16 doCheck = false; 17 18 meta = with lib; { 19 homepage = https://github.com/smurfix/flask-script; 20 description = "Scripting support for Flask"; 21 license = licenses.bsd3; 22 maintainers = with maintainers; [ abbradar ]; 23 }; 24}