Commit 22c9a528 authored by Fabian Affolter's avatar Fabian Affolter
Browse files

python312Packages.pycookiecheat: refactor

parent 486219cc
Loading
Loading
Loading
Loading
+9 −6
Original line number Diff line number Diff line
{ stdenv
, lib
{ lib
, stdenv
, buildPythonPackage
, cryptography
, fetchFromGitHub
@@ -15,7 +15,7 @@
buildPythonPackage rec {
  pname = "pycookiecheat";
  version = "0.7.0";
  format = "pyproject";
  pyproject = true;

  disabled = pythonOlder "3.7";

@@ -31,13 +31,16 @@ buildPythonPackage rec {
    "keyring"
  ];

  nativeBuildInputs = [
    pythonRelaxDepsHook
  build-system = [
    setuptools
    setuptools-scm
  ];

  propagatedBuildInputs = [
  nativeBuildInputs = [
    pythonRelaxDepsHook
  ];

  dependencies = [
    cryptography
    keyring
  ];