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

14 lines
273 B

{ lib, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "contexter";
version = "0.1.4";
src = fetchPypi {
inherit pname version;
sha256 = "c730890b1a915051414a6350d8ea1cddca7d01d8f756badedb30b9bf305ea0a8";
};
meta = with lib; {
};
}