My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/cookies/default.nix

19 lines
436 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "cookies";
version = "2.2.1";
src = fetchPypi {
inherit pname version;
sha256 = "13pfndz8vbk4p2a44cfbjsypjarkrall71pgc97glk5fiiw9idnn";
};
doCheck = false;
meta = with lib; {
description = "Friendlier RFC 6265-compliant cookie parser/renderer";
homepage = "https://github.com/sashahart/cookies";
license = licenses.mit;
};
}