Created
October 28, 2019 18:34
-
-
Save FeepingCreature/582ba56564572ec5e9aa1a99c8bb6d9b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ buildPythonPackage, fetchPypi }: | |
with import<nixpkgs> {}; | |
let flask-markdown = buildPythonPackage rec { | |
pname = "flask-markdown"; | |
version = "0.3"; | |
src = fetchPypi { | |
inherit pname version; | |
sha256 = "43c2c9e5e7a16b6c88ba3088a9bfc82f7db8e13378be7c78d6c14a5f8ed05afd"; | |
}; | |
}; in | |
stdenv.mkDerivation rec { | |
name = "env"; | |
env = buildEnv { name = name; paths = buildInputs; }; | |
buildInputs = [ python3 flask-markdown ] ++ (with python3Packages; [ flask flask-bootstrap ]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment