pythonPackages.contexter: Move to own file

This commit is contained in:
Elis Hirwing
2018-03-31 19:31:30 +02:00
committed by Frederik Rietdijk
parent ab557fcd67
commit eb3fc6df2a
2 changed files with 15 additions and 10 deletions

View File

@@ -0,0 +1,14 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "contexter";
version = "0.1.3";
src = fetchPypi {
inherit pname version;
sha256 = "0xrnkjya29ya0hkj8y4k9ni2mnr58i6r0xfqlj7wk07v4jfrkc8n";
};
meta = with stdenv.lib; {
};
}