Commit 0e70e01d authored by Robert Schütz's avatar Robert Schütz
Browse files
parent bd748ffa
Loading
Loading
Loading
Loading
+3 −12
Original line number Diff line number Diff line
@@ -2,7 +2,6 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  fetchpatch,

  # build-system
  setuptools,
@@ -13,23 +12,15 @@

buildPythonPackage rec {
  pname = "orderly-set";
  version = "5.2.2";
  version = "5.3.0";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "seperman";
    repo = "orderly-set";
    tag = version;
    hash = "sha256-ZDo5fSHD0lCn9CRQtWK10QeZoOhuXG3LR3KA/to9gpE=";
    hash = "sha256-8tqQR8Oa/1jcfokBVKdvsC7Ya26bn0XHM9/QsstM07E=";
  };
  patches = [
    # https://github.com/seperman/orderly-set/pull/5
    (fetchpatch {
      name = "do-not-import-mypy.patch";
      url = "https://github.com/seperman/orderly-set/commit/34362084868a081b8ebaaf1f13c93a7a798ef557.patch";
      hash = "sha256-eKbnA31ykm5fH0om6cfOaMpy+ZNNWRDkHieaUIHF8OM=";
    })
  ];

  build-system = [
    setuptools
@@ -47,7 +38,7 @@ buildPythonPackage rec {
  ];

  meta = {
    description = "Orderly Set previously known as Ordered Set";
    description = "Multiple implementations of Ordered Set";
    homepage = "https://github.com/seperman/orderly-set";
    changelog = "https://github.com/seperman/orderly-set/blob/${src.rev}/CHANGELOG.md";
    license = lib.licenses.mit;