source: trunk/nix/klein.nix

Last change on this file was f5acaea, checked in by Jean-Paul Calderone <exarkun@…>, at 2023-05-11T13:05:58Z

bump the version of klein in the nix-based builds

  • Property mode set to 100644
File size: 218 bytes
Line 
1{ klein, fetchPypi }:
2klein.overrideAttrs (old: rec {
3  pname = "klein";
4  version = "23.5.0";
5  src = fetchPypi {
6    inherit pname version;
7    sha256 = "sha256-kGkSt6tBDZp/NRICg5w81zoqwHe9AHHIYcMfDu92Aoc=";
8  };
9})
Note: See TracBrowser for help on using the repository browser.