Skip to content

Instantly share code, notes, and snippets.

@jtojnar
Forked from rickhull/shell.nix
Last active July 5, 2020 18:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jtojnar/de08b7d17057131b3eb709703ca115a4 to your computer and use it in GitHub Desktop.
Save jtojnar/de08b7d17057131b3eb709703ca115a4 to your computer and use it in GitHub Desktop.
with import <nixpkgs> {};
let
testing_redis = python3.pkgs.buildPythonPackage rec {
pname = "testing.redis";
version = "1.1.1";
src = python3.pkgs.fetchPypi {
inherit pname version;
sha256 = "be46aeb951589d3f25f1dc5391934582bdadc196baf6bd261d60e71991f2b4f2";
};
meta = {
homepage = "";
description = "";
};
};
in mkShell {
propagatedBuildInputs = with python3.pkgs; [
python3
pytest
pyramid
redis
sqlalchemy
testing_redis
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment