Skip to content

Instantly share code, notes, and snippets.

@rickhull
Last active July 5, 2020 18:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save rickhull/b0deee47ca050c20c437ab0d45d045c5 to your computer and use it in GitHub Desktop.
Save rickhull/b0deee47ca050c20c437ab0d45d045c5 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 = [
python3
python3.pkgs.pytest
python3.pkgs.pyramid
redis
python3.pkgs.redis
python3.pkgs.sqlalchemy
testing_redis
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment