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/oset/default.nix

19 lines
339 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "oset";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "017rr1m72s2fh9bmz5vrvc5mshczgzisi5894v9zkvvfr7gdf7sc";
};
doCheck = false;
meta = with lib; {
description = "Ordered set";
license = licenses.psfl;
};
}