Skip to content

Instantly share code, notes, and snippets.

@hmemcpy
Created August 8, 2019 13:46
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 hmemcpy/ccbdc226b1ba5b6e56ec143638aa874a to your computer and use it in GitHub Desktop.
Save hmemcpy/ccbdc226b1ba5b6e56ec143638aa874a to your computer and use it in GitHub Desktop.
{ pkgs ? import <nixpkgs> {} }: with pkgs;
let
pygments24 = pythonPackages.pygments.overrideAttrs(old: rec {
version = "2.4.2";
src = pythonPackages.fetchPypi {
inherit version;
inherit (old) pname;
sha256 = "15v2sqm5g12bqa0c7wikfh9ck2nl97ayizy1hpqhmws5gqalq748";
};
});
in mkShell {
buildInputs = [ pygments24 ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment